[Bprocessor-commit] model/src/net/sourceforge/bprocessor/model Edge.java,1.1,1.2
Status: Pre-Alpha
Brought to you by:
henryml
From: Jesper P. <je...@us...> - 2005-07-18 09:25:25
|
Update of /cvsroot/bprocessor/model/src/net/sourceforge/bprocessor/model In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv17940 Modified Files: Edge.java Log Message: Remove references to contour Index: Edge.java =================================================================== RCS file: /cvsroot/bprocessor/model/src/net/sourceforge/bprocessor/model/Edge.java,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** Edge.java 11 Jul 2005 09:31:23 -0000 1.1 --- Edge.java 18 Jul 2005 09:25:05 -0000 1.2 *************** *** 8,13 **** import java.io.Serializable; - import java.util.HashSet; - import java.util.Set; import org.apache.log4j.Logger; --- 8,11 ---- *************** *** 35,41 **** private Vertex to; - /** The contour relationship */ - private Set contours; - /** * Constructor for persistence layer --- 33,36 ---- *************** *** 53,57 **** setFrom(new Vertex()); setTo(new Vertex()); - setContours(new HashSet()); } --- 48,51 ---- *************** *** 121,140 **** /** - * Get the contours - * @return The contours - */ - public Set getContours() { - return contours; - } - - /** - * Set the contours - * @param contours The contours - */ - public void setContours(Set contours) { - this.contours = contours; - } - - /** * Return the hash code of the object * @return The hash --- 115,118 ---- |