[Nextobjects-devel] nextobjects/nextobjects/src/org/devaki/nextobjects/workspace/models/graphics Con
Status: Alpha
Brought to you by:
eflorent
From: <efl...@us...> - 2003-05-25 20:21:14
|
Update of /cvsroot/nextobjects/nextobjects/nextobjects/src/org/devaki/nextobjects/workspace/models/graphics In directory sc8-pr-cvs1:/tmp/cvs-serv28400/src/org/devaki/nextobjects/workspace/models/graphics Modified Files: ConceptualView.java Log Message: Fixed major bugs in merise transformation. Index: ConceptualView.java =================================================================== RCS file: /cvsroot/nextobjects/nextobjects/nextobjects/src/org/devaki/nextobjects/workspace/models/graphics/ConceptualView.java,v retrieving revision 1.15 retrieving revision 1.16 diff -C2 -d -r1.15 -r1.16 *** ConceptualView.java 25 May 2003 08:02:36 -0000 1.15 --- ConceptualView.java 25 May 2003 20:21:11 -0000 1.16 *************** *** 11,15 **** be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR ! PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along --- 11,15 ---- be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR ! PURPOSE. See the GNU GeneralSys Public License for more details. You should have received a copy of the GNU General Public License along *************** *** 185,188 **** --- 185,189 ---- tmpLink = ((Association)ModelMan.getDropTargetObject()) .addAssociationLink((Entity)ModelMan.getDraggedObject()); + ((LineView)tmpLink.getObjectView()).computeBestPoints(); } *************** *** 195,198 **** --- 196,200 ---- tmpLink = ((Association)ModelMan.getDraggedObject()) .addAssociationLink((Entity)ModelMan.getDropTargetObject()); + ((LineView)tmpLink.getObjectView()).computeBestPoints(); } *************** *** 206,220 **** } - /** ! * ! * <p>Title: MyMouseListener</p> ! * <p>Description: </p> ! * <p>Copyright: GNU Public License</p> ! * <p>Company: devaki.org</p> */ class MyMouseListener extends MouseInputAdapter { ! // Mouse Pressed public void mousePressed(MouseEvent e) { --- 208,220 ---- } /** ! * MyMouseListener ! * @author: efl...@de... */ class MyMouseListener extends MouseInputAdapter { ! /* ! * MousePressed ! */ public void mousePressed(MouseEvent e) { |