1 22 23 24 package hero.util; 25 26 import java.io.Serializable ; 27 import java.util.*; 28 29 public final class NodeProperties implements Serializable , java.lang.Cloneable { 30 31 33 private Collection properties; 34 35 private String projectName; 36 37 39 40 44 public String getProjectName() { 45 return (projectName); 46 } 47 48 52 public void setProjectName(String projectName) { 53 this.projectName = projectName; 54 } 55 56 60 public Collection getProperty() { 61 return (properties); 62 } 63 64 68 public void setProperty(Collection properties) { 69 this.properties = properties; 70 } 71 72 public NodeProperties(){} 73 74 public Object clone() throws java.lang.CloneNotSupportedException { 75 return super.clone(); 76 } 77 78 } 79 | Popular Tags |