[Bprocessor-commit] model/src/net/sourceforge/bprocessor/model Space.java, 1.206, 1.207
Status: Pre-Alpha
Brought to you by:
henryml
From: Michael L. <he...@us...> - 2007-11-13 10:48:37
|
Update of /cvsroot/bprocessor/model/src/net/sourceforge/bprocessor/model In directory sc8-pr-cvs3.sourceforge.net:/tmp/cvs-serv16022/src/net/sourceforge/bprocessor/model Modified Files: Space.java Log Message: removed some hibernate comments Index: Space.java =================================================================== RCS file: /cvsroot/bprocessor/model/src/net/sourceforge/bprocessor/model/Space.java,v retrieving revision 1.206 retrieving revision 1.207 diff -C2 -d -r1.206 -r1.207 *** Space.java 12 Nov 2007 14:15:22 -0000 1.206 --- Space.java 13 Nov 2007 10:48:39 -0000 1.207 *************** *** 26,35 **** /** ! * The space ! * @hibernate.joined-subclass ! * table="SPACE" ! * lazy="false" ! * @hibernate.key ! * column="DOMAIN_ID" */ public class Space extends Geometric implements Parametric { --- 26,30 ---- /** ! * Space */ public class Space extends Geometric implements Parametric { *************** *** 145,151 **** if (fl != null) { fl.add(current); - } else { - log.error(from + " werent in the space but were part of edge " + current + - " in space " + this); } Vertex to = current.getTo(); --- 140,143 ---- *************** *** 361,365 **** * Set the description * @return description The description of the space - * @hibernate.property */ public Description getDescription() { --- 353,356 ---- *************** *** 630,635 **** if (tempedge != null) { tmp.add(tempedge); - } else { - log.warn("Edge were very short " + edge); } } --- 621,624 ---- *************** *** 958,967 **** * Get the surfaces * @return The surfaces - * @hibernate.set - * lazy="false" - * @hibernate.key - * column="DOMAIN_ID" - * @hibernate.many-to-many - * class="net.sourceforge.bprocessor.model.Surface" */ public Set<Surface> getEnvelope() { --- 947,950 ---- *************** *** 2839,2841 **** --- 2822,2832 ---- } } + + /** + * Info + * @param object Object + */ + public static void info(Object object) { + log.info(object); + } } |