[Bprocessor-commit] gui/src/net/sourceforge/bprocessor/gui/attrview MyKeyListener.java,1.2,1.3
Status: Pre-Alpha
Brought to you by:
henryml
From: Michael L. <he...@us...> - 2006-01-04 14:30:18
|
Update of /cvsroot/bprocessor/gui/src/net/sourceforge/bprocessor/gui/attrview In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv21815/src/net/sourceforge/bprocessor/gui/attrview Modified Files: MyKeyListener.java Log Message: Replaced created/remove/modified from Notifier with changed/update Index: MyKeyListener.java =================================================================== RCS file: /cvsroot/bprocessor/gui/src/net/sourceforge/bprocessor/gui/attrview/MyKeyListener.java,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** MyKeyListener.java 12 Dec 2005 10:06:21 -0000 1.2 --- MyKeyListener.java 4 Jan 2006 14:29:55 -0000 1.3 *************** *** 11,16 **** import javax.swing.text.JTextComponent; - - import net.sourceforge.bprocessor.model.Project; import net.sourceforge.bprocessor.model.Space; --- 11,14 ---- *************** *** 65,74 **** funs = space; funs.setName(newName); ! Project.getInstance().update(funs); } if (space.isConstructionSpace()) { cons = space; ! cons.setName(newName); ! Project.getInstance().update(cons); } } --- 63,72 ---- funs = space; funs.setName(newName); ! funs.changed(); } if (space.isConstructionSpace()) { cons = space; ! cons.setName(newName); ! cons.changed(); } } |