[Bprocessor-commit] gui/src/net/sourceforge/bprocessor/gui/attrview StringAttribute.java, 1.20, 1.2
Status: Pre-Alpha
Brought to you by:
henryml
From: Michael L. <he...@us...> - 2010-02-25 15:55:16
|
Update of /cvsroot/bprocessor/gui/src/net/sourceforge/bprocessor/gui/attrview In directory sfp-cvsdas-2.v30.ch3.sourceforge.com:/tmp/cvs-serv10167/src/net/sourceforge/bprocessor/gui/attrview Modified Files: StringAttribute.java GenericPanel.java Log Message: Index: StringAttribute.java =================================================================== RCS file: /cvsroot/bprocessor/gui/src/net/sourceforge/bprocessor/gui/attrview/StringAttribute.java,v retrieving revision 1.20 retrieving revision 1.21 diff -C2 -d -r1.20 -r1.21 *** StringAttribute.java 9 Sep 2009 12:51:35 -0000 1.20 --- StringAttribute.java 25 Feb 2010 14:43:55 -0000 1.21 *************** *** 282,286 **** Stack stack = new Stack(); function.evaluate(env, stack); - System.out.println("stack contains " + stack.size() + " elements"); Object o = stack.pop(); if (o instanceof Double) { --- 282,285 ---- *************** *** 296,300 **** log.error(error); } - //attribute.setValue(Double.valueOf(editor.getText()) / 1000); } component.remove(editor); --- 295,298 ---- Index: GenericPanel.java =================================================================== RCS file: /cvsroot/bprocessor/gui/src/net/sourceforge/bprocessor/gui/attrview/GenericPanel.java,v retrieving revision 1.55 retrieving revision 1.56 diff -C2 -d -r1.55 -r1.56 *** GenericPanel.java 18 Sep 2009 09:09:02 -0000 1.55 --- GenericPanel.java 25 Feb 2010 14:43:55 -0000 1.56 *************** *** 264,268 **** */ public void stopEditing() { - System.out.println("stop editing"); if (current != null) { current.stopEditing(); --- 264,267 ---- *************** *** 378,381 **** --- 377,381 ---- //FIXME need to delay call to a reasonable time content.removeAll(); + genAttributes.clear(); generateContentFor(obj); revalidate(); |