1 27 28 package org.nightlabs.editor2d.request; 29 30 import java.util.List ; 31 32 import org.eclipse.draw2d.geometry.Point; 33 import org.eclipse.gef.requests.SelectionRequest; 34 35 36 public class EditorRotateCenterRequest 37 extends SelectionRequest 38 { 39 protected Point rotationCenter; 40 public Point getRotationCenter() { 41 return rotationCenter; 42 } 43 public void setRotationCenter(Point rotationCenter) { 44 this.rotationCenter = rotationCenter; 45 } 46 47 protected List parts; 48 public List getEditParts() { 49 return parts; 50 } 51 public void setEditParts(List list) { 52 parts = list; 53 } 54 55 protected boolean multiple = false; 56 public boolean isMultiple() { 57 return multiple; 58 } 59 public void setMultiple(boolean multiple) { 60 this.multiple = multiple; 61 } 62 } 63 | Popular Tags |