[Bprocessor-commit] model/src/net/sourceforge/bprocessor/model Surface.java, 1.204, 1.205
Status: Pre-Alpha
Brought to you by:
henryml
From: Michael L. <he...@us...> - 2007-11-13 10:04:33
|
Update of /cvsroot/bprocessor/model/src/net/sourceforge/bprocessor/model In directory sc8-pr-cvs3.sourceforge.net:/tmp/cvs-serv29804/src/net/sourceforge/bprocessor/model Modified Files: Surface.java Log Message: Removed some hibernate comments Index: Surface.java =================================================================== RCS file: /cvsroot/bprocessor/model/src/net/sourceforge/bprocessor/model/Surface.java,v retrieving revision 1.204 retrieving revision 1.205 diff -C2 -d -r1.204 -r1.205 *** Surface.java 13 Nov 2007 09:46:27 -0000 1.204 --- Surface.java 13 Nov 2007 10:04:29 -0000 1.205 *************** *** 191,195 **** * Get the name * @return The name - * @hibernate.property */ public String getName() { --- 191,194 ---- *************** *** 206,210 **** * Is the surface a constructor * @return True if constructor; otherwise false - * @hibernate.property */ public boolean getConstructor() { --- 205,208 ---- *************** *** 223,234 **** * Get the edges * @return The edges - * @hibernate.list - * lazy="false" - * @hibernate.key - * column="SURFACE_ID" - * @hibernate.collection-index - * column="SORT_ORDER" - * @hibernate.many-to-many - * class="net.sourceforge.bprocessor.model.Edge" */ public List<Edge> getEdges() { --- 221,224 ---- *************** *** 535,544 **** * Get the hole surfaces * @return The hole surfaces - * @hibernate.set - * lazy="false" - * @hibernate.key - * column="SURFACE_ID" - * @hibernate.many-to-many - * class="net.sourceforge.bprocessor.model.Surface" */ public Collection<Surface> getHoles() { --- 525,528 ---- *************** *** 1303,1309 **** * Get the material on the backside of the surface * @return the backmaterial - * @hibernate.one-to-one - * column="BACK_MATERIAL_ID" - * class="net.sourceforge.bprocessor.model.Material" */ public Material getBackMaterial() { --- 1287,1290 ---- *************** *** 1323,1329 **** * Get the material on the frontside of the surface * @return the frontmaterial - * @hibernate.one-to-one - * column="FRONT_MATERIAL_ID" - * class="net.sourceforge.bprocessor.model.Material" */ public Material getFrontMaterial() { --- 1304,1307 ---- *************** *** 1343,1349 **** * Get the domain behind the surface * @return the backdomain - * @hibernate.many-to-one - * column="BACK_DOMAIN_ID" - * class="net.sourceforge.bprocessor.model.Domain" */ public Space getBackDomain() { --- 1321,1324 ---- *************** *** 1386,1392 **** * Get the domain in front of the surface * @return the frontdomain - * @hibernate.many-to-one - * column="FRONT_DOMAIN_ID" - * class="net.sourceforge.bprocessor.model.Domain" */ public Space getFrontDomain() { --- 1361,1364 ---- |