[Bprocessor-commit] gui/src/net/sourceforge/bprocessor/gui/actions CreateConstructionSpaceActionList
Status: Pre-Alpha
Brought to you by:
henryml
From: Jesper P. <je...@us...> - 2005-07-28 10:18:50
|
Update of /cvsroot/bprocessor/gui/src/net/sourceforge/bprocessor/gui/actions In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv13696 Modified Files: CreateConstructionSpaceActionListener.java CreateElementActionListener.java CreateFunctionalSpaceActionListener.java CreatePartActionListener.java CreateSurfaceActionListener.java Log Message: Facades now genrates CREATED, MODIFIED and DELETED Index: CreatePartActionListener.java =================================================================== RCS file: /cvsroot/bprocessor/gui/src/net/sourceforge/bprocessor/gui/actions/CreatePartActionListener.java,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** CreatePartActionListener.java 28 Jul 2005 06:54:40 -0000 1.3 --- CreatePartActionListener.java 28 Jul 2005 10:18:40 -0000 1.4 *************** *** 7,12 **** package net.sourceforge.bprocessor.gui.actions; - import net.sourceforge.bprocessor.kernel.notification.Notification; - import net.sourceforge.bprocessor.kernel.notification.Notifier; import net.sourceforge.bprocessor.gui.GUI; import net.sourceforge.bprocessor.model.Part; --- 7,10 ---- *************** *** 50,56 **** p = pf.create(p); - - Notification n = new Notification(Notification.PART_CREATED, p.getId()); - Notifier.getInstance().sendNotification(n); } } --- 48,51 ---- Index: CreateConstructionSpaceActionListener.java =================================================================== RCS file: /cvsroot/bprocessor/gui/src/net/sourceforge/bprocessor/gui/actions/CreateConstructionSpaceActionListener.java,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** CreateConstructionSpaceActionListener.java 28 Jul 2005 06:54:40 -0000 1.2 --- CreateConstructionSpaceActionListener.java 28 Jul 2005 10:18:40 -0000 1.3 *************** *** 7,13 **** package net.sourceforge.bprocessor.gui.actions; - import net.sourceforge.bprocessor.kernel.notification.Notification; - import net.sourceforge.bprocessor.kernel.notification.Notifier; - import net.sourceforge.bprocessor.gui.GUI; import net.sourceforge.bprocessor.model.ConstructionSpace; --- 7,10 ---- *************** *** 51,57 **** cs = csf.create(cs); - - Notification n = new Notification(Notification.CONSTRUCTION_SPACE_CREATED, cs.getId()); - Notifier.getInstance().sendNotification(n); } } --- 48,51 ---- Index: CreateElementActionListener.java =================================================================== RCS file: /cvsroot/bprocessor/gui/src/net/sourceforge/bprocessor/gui/actions/CreateElementActionListener.java,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** CreateElementActionListener.java 28 Jul 2005 06:54:40 -0000 1.3 --- CreateElementActionListener.java 28 Jul 2005 10:18:40 -0000 1.4 *************** *** 7,12 **** package net.sourceforge.bprocessor.gui.actions; - import net.sourceforge.bprocessor.kernel.notification.Notification; - import net.sourceforge.bprocessor.kernel.notification.Notifier; import net.sourceforge.bprocessor.gui.GUI; import net.sourceforge.bprocessor.model.Element; --- 7,10 ---- *************** *** 50,56 **** el = ef.create(el); - - Notification n = new Notification(Notification.ELEMENT_CREATED, el.getId()); - Notifier.getInstance().sendNotification(n); } } --- 48,51 ---- Index: CreateFunctionalSpaceActionListener.java =================================================================== RCS file: /cvsroot/bprocessor/gui/src/net/sourceforge/bprocessor/gui/actions/CreateFunctionalSpaceActionListener.java,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** CreateFunctionalSpaceActionListener.java 28 Jul 2005 06:54:40 -0000 1.2 --- CreateFunctionalSpaceActionListener.java 28 Jul 2005 10:18:40 -0000 1.3 *************** *** 7,13 **** package net.sourceforge.bprocessor.gui.actions; - import net.sourceforge.bprocessor.kernel.notification.Notification; - import net.sourceforge.bprocessor.kernel.notification.Notifier; - import net.sourceforge.bprocessor.gui.GUI; import net.sourceforge.bprocessor.model.FunctionalSpace; --- 7,10 ---- *************** *** 51,57 **** fs = fsf.create(fs); - - Notification n = new Notification(Notification.FUNCTIONAL_SPACE_CREATED, fs.getId()); - Notifier.getInstance().sendNotification(n); } } --- 48,51 ---- Index: CreateSurfaceActionListener.java =================================================================== RCS file: /cvsroot/bprocessor/gui/src/net/sourceforge/bprocessor/gui/actions/CreateSurfaceActionListener.java,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** CreateSurfaceActionListener.java 28 Jul 2005 06:54:40 -0000 1.3 --- CreateSurfaceActionListener.java 28 Jul 2005 10:18:40 -0000 1.4 *************** *** 7,12 **** package net.sourceforge.bprocessor.gui.actions; - import net.sourceforge.bprocessor.kernel.notification.Notification; - import net.sourceforge.bprocessor.kernel.notification.Notifier; import net.sourceforge.bprocessor.gui.GUI; import net.sourceforge.bprocessor.model.Surface; --- 7,10 ---- *************** *** 50,56 **** s = sf.create(s); - - Notification n = new Notification(Notification.SURFACE_CREATED, s.getId()); - Notifier.getInstance().sendNotification(n); } } --- 48,51 ---- |