[Bprocessor-commit] model/src/net/sourceforge/bprocessor/model Space.java, 1.171, 1.172
Status: Pre-Alpha
Brought to you by:
henryml
From: rimestad <rim...@us...> - 2007-09-14 10:57:48
|
Update of /cvsroot/bprocessor/model/src/net/sourceforge/bprocessor/model In directory sc8-pr-cvs3.sourceforge.net:/tmp/cvs-serv26744/src/net/sourceforge/bprocessor/model Modified Files: Space.java Log Message: Removed the default name for a space at creation time. Changed the order og name string to name - id - classification Index: Space.java =================================================================== RCS file: /cvsroot/bprocessor/model/src/net/sourceforge/bprocessor/model/Space.java,v retrieving revision 1.171 retrieving revision 1.172 diff -C2 -d -r1.171 -r1.172 *** Space.java 27 Aug 2007 14:00:31 -0000 1.171 --- Space.java 14 Sep 2007 10:57:43 -0000 1.172 *************** *** 1499,1505 **** String lvl = getLevelName(); if (getClassification() != null) { ! return "(" + getClassification().toString() + " - " + lvl + ")"; } else { ! return "(" + lvl + ")"; } } else { --- 1499,1505 ---- String lvl = getLevelName(); if (getClassification() != null) { ! return " - " + lvl + " - " + getClassification().toString(); } else { ! return " - " + lvl; } } else { |