Your browser does not support JavaScript and this site utilizes JavaScript to build content and provide links to additional information. You should either enable JavaScript in your browser settings or use a browser that supports JavaScript in order to take full advantage of this site.
1 package hero.util.values; 2 3 31 32 33 import java.io.Serializable ; 34 import java.util.Collection ; 35 import java.util.Vector ; 36 37 public final class BonitaPropertyValue implements Serializable { 38 39 41 private String key=""; 42 private String value=""; 43 private boolean propagate = true; 44 private Collection possibleValues=null; 45 46 48 public String getKey() { 49 return (key); 50 } 51 52 public void setKey(String key) { 53 this.key = key; 54 } 55 56 public String getValue() { 57 return (value); 58 } 59 60 public void setValue(String value) { 61 this.value= value; 62 } 63 64 public boolean getPropagate() { 65 return (propagate); 66 } 67 68 public void setPropagate(boolean propagate) { 69 this.propagate= propagate; 70 } 71 72 public Collection getPossibleValues() { 73 return (possibleValues); 74 } 75 76 public void setPossibleValues(Collection possibleValues) { 77 this.possibleValues= possibleValues; 78 } 79 80 public BonitaPropertyValue(){} 81 82 } 83
| Popular Tags
|