Update of /cvsroot/bprocessor/model/src/net/sourceforge/bprocessor/model
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv19202
Modified Files:
Surface.java
Log Message:
added reference to contour
Index: Surface.java
===================================================================
RCS file: /cvsroot/bprocessor/model/src/net/sourceforge/bprocessor/model/Surface.java,v
retrieving revision 1.1.1.1
retrieving revision 1.2
diff -C2 -d -r1.1.1.1 -r1.2
*** Surface.java 27 Jun 2005 09:31:14 -0000 1.1.1.1
--- Surface.java 11 Jul 2005 09:32:23 -0000 1.2
***************
*** 32,35 ****
--- 32,38 ----
private Set domains;
+ /** The contour relationship */
+ private Set contours;
+
/**
* Constructor for persistence layer
***************
*** 46,49 ****
--- 49,53 ----
setName(name);
setDomains(new HashSet());
+ setContours(new HashSet());
}
***************
*** 95,98 ****
--- 99,118 ----
this.domains = domains;
}
+
+ /**
+ * 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;
+ }
/**
|