Package simtools.shapes

Examples of simtools.shapes.CompoundShape$ShapeAndSize


  /* (non-Javadoc)
   * @see javax.swing.undo.AbstractUndoableEdit#undo()
   */
  public void undo() {
    for (int i=0; i< _compoundShapes.size();i++){
      CompoundShape compoundShape = (CompoundShape)_compoundShapes.get(i);
      _shapesComponent.undoUngroup(compoundShape);
    }
    super.undo();
  }
View Full Code Here


  /* (non-Javadoc)
   * @see javax.swing.undo.AbstractUndoableEdit#redo()
   */
  public void redo() {
    for (int i=0; i< _compoundShapes.size();i++){
      CompoundShape compoundShape = (CompoundShape)_compoundShapes.get(i);
      _shapesComponent.redoUngroup(compoundShape);
    }
    super.redo();
  }
View Full Code Here

TOP

Related Classes of simtools.shapes.CompoundShape$ShapeAndSize

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.