1 22 23 24 package hero.util; 25 26 import java.io.Serializable ; 27 import java.util.*; 28 29 public final class NodeInEdges implements Serializable , java.lang.Cloneable { 30 31 33 private Collection inEdges; 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 getInEdge() { 61 return (inEdges); 62 } 63 64 68 public void setInEdge(Collection inEdges) { 69 this.inEdges = inEdges; 70 } 71 72 public NodeInEdges(){} 73 74 public Object clone() throws java.lang.CloneNotSupportedException { 75 return super.clone(); 76 } 77 78 } 79 | Popular Tags |