01: /*
02: * $Id: Compiler.java 1918 2007-11-29 14:02:17Z dreil $
03: * IzPack - Copyright 2001-2008 Julien Ponge, All Rights Reserved.
04: *
05: * http://izpack.org/
06: * http://izpack.codehaus.org/
07: *
08: * Copyright 2007 Dennis Reil
09: *
10: *
11: * Licensed under the Apache License, Version 2.0 (the "License");
12: * you may not use this file except in compliance with the License.
13: * You may obtain a copy of the License at
14: *
15: * http://www.apache.org/licenses/LICENSE-2.0
16: *
17: * Unless required by applicable law or agreed to in writing, software
18: * distributed under the License is distributed on an "AS IS" BASIS,
19: * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
20: * See the License for the specific language governing permissions and
21: * limitations under the License.
22: */
23: package com.izforge.izpack.compiler;
24:
25: import java.io.Serializable;
26:
27: /**
28: *
29: * @author Dennis Reil, <Dennis.Reil@reddot.de>
30: * @version $Id: $
31: */
32: public class DynamicVariable implements Serializable {
33: private static final long serialVersionUID = -7985397187206803090L;
34: private String name;
35: private String value;
36: private String conditionid;
37:
38: public DynamicVariable() {
39:
40: }
41:
42: /**
43: * @return the name
44: */
45: public String getName() {
46: return this .name;
47: }
48:
49: /**
50: * @param name the name to set
51: */
52: public void setName(String name) {
53: this .name = name;
54: }
55:
56: /**
57: * @return the value
58: */
59: public String getValue() {
60: return this .value;
61: }
62:
63: /**
64: * @param value the value to set
65: */
66: public void setValue(String value) {
67: this .value = value;
68: }
69:
70: /**
71: * @return the conditionid
72: */
73: public String getConditionid() {
74: return this .conditionid;
75: }
76:
77: /**
78: * @param conditionid the conditionid to set
79: */
80: public void setConditionid(String conditionid) {
81: this.conditionid = conditionid;
82: }
83:
84: }
|