[Bprocessor-commit] model/src/net/sourceforge/bprocessor/model Classification.java, 1.21, 1.22
Status: Pre-Alpha
Brought to you by:
henryml
From: Michael L. <he...@us...> - 2007-10-18 12:30:33
|
Update of /cvsroot/bprocessor/model/src/net/sourceforge/bprocessor/model In directory sc8-pr-cvs3.sourceforge.net:/tmp/cvs-serv18770/src/net/sourceforge/bprocessor/model Modified Files: Classification.java Log Message: a random change that produces same result.. Index: Classification.java =================================================================== RCS file: /cvsroot/bprocessor/model/src/net/sourceforge/bprocessor/model/Classification.java,v retrieving revision 1.21 retrieving revision 1.22 diff -C2 -d -r1.21 -r1.22 *** Classification.java 9 Aug 2007 16:07:53 -0000 1.21 --- Classification.java 18 Oct 2007 12:30:18 -0000 1.22 *************** *** 8,23 **** import java.util.ArrayList; - import java.util.Iterator; import java.util.List; - import org.apache.log4j.Logger; - /** * This class persist the model from/to an XML document */ public class Classification extends Structure<Classification> implements Parametric { - /** The logger */ - private static Logger log = Logger.getLogger(Classification.class); - /** The id of the classification */ private String id; --- 8,17 ---- *************** *** 171,175 **** res.add(new Attribute("Name", getName(), false)); res.add(new Attribute("Code", getFullId(null), false)); ! res.add(new Attribute("Classification Type", null, possibleTypes)); return res; } --- 165,169 ---- res.add(new Attribute("Name", getName(), false)); res.add(new Attribute("Code", getFullId(null), false)); ! res.add(new Attribute("Classification Type", possibleTypes, false)); return res; } *************** *** 185,192 **** */ public void setAttributes(List<Attribute> attributes) { - Iterator iter = attributes.iterator(); - while (iter.hasNext()) { - Attribute a = (Attribute)iter.next(); - } } } --- 179,182 ---- |