[Bprocessor-commit] gui/src/net/sourceforge/bprocessor/gui/attrview GenericPanel.java, 1.60, 1.61 G
Status: Pre-Alpha
Brought to you by:
henryml
From: Michael L. <he...@us...> - 2013-05-15 06:44:17
|
Update of /cvsroot/bprocessor/gui/src/net/sourceforge/bprocessor/gui/attrview In directory sfp-cvs-1.v30.ch3.sourceforge.com:/tmp/cvs-serv22908/src/net/sourceforge/bprocessor/gui/attrview Modified Files: GenericPanel.java Removed Files: GraphAttribute.java Log Message: Removed some sensobyg code --- GraphAttribute.java DELETED --- Index: GenericPanel.java =================================================================== RCS file: /cvsroot/bprocessor/gui/src/net/sourceforge/bprocessor/gui/attrview/GenericPanel.java,v retrieving revision 1.60 retrieving revision 1.61 diff -C2 -d -r1.60 -r1.61 *** GenericPanel.java 18 May 2011 22:08:38 -0000 1.60 --- GenericPanel.java 15 May 2013 06:44:14 -0000 1.61 *************** *** 35,39 **** import net.sourceforge.bprocessor.model.Selector; import net.sourceforge.bprocessor.model.Structure; - import net.sourceforge.bprocessor.model.sense.monitor.Graph; /** --- 35,38 ---- *************** *** 208,217 **** } - private void handleGraph(Attribute attribute, JComponent where) { - GenericAttribute generic = new GraphAttribute(attribute); - genAttributes.add(generic); - where.add(new AttributeRow(generic)); - } - private void generateContent(List what, JComponent where) { Iterator iter = what.iterator(); --- 207,210 ---- *************** *** 230,235 **** } else if (a.getValue() instanceof Boolean) { handleBoolean(a, where); - } else if (a.getValue() instanceof Graph) { - handleGraph(a, where); } else if (a.getValue() instanceof Component) { handleComponent(a, where); --- 223,226 ---- |