Package org.geomajas.gwt.client.map.feature.operation

Examples of org.geomajas.gwt.client.map.feature.operation.FeatureOperation.undo()


  public void undoLastOperation() {
    if (operationQueue.size() > 0 && newFeatures != null && newFeatures.length > 0) {
      FeatureOperation op = operationQueue.pop();
      for (int i = 0; i < newFeatures.length; i++) {
        op.undo(newFeatures[i]);
      }
    }
  }

  public Object clone() {
View Full Code Here

TOP
Copyright © 2018 www.massapi.com. 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.