| 1 8 package com.nightlabs.editor2d.request; 9 10 import java.util.List ; 11 12 import org.eclipse.draw2d.geometry.Point; 13 import org.eclipse.gef.requests.SelectionRequest; 14 15 16 public class EditorRotateCenterRequest 17 extends SelectionRequest 18 { 19 protected Point rotationCenter; 20 public Point getRotationCenter() { 21 return rotationCenter; 22 } 23 public void setRotationCenter(Point rotationCenter) { 24 this.rotationCenter = rotationCenter; 25 } 26 27 protected List parts; 28 public List getEditParts() { 29 return parts; 30 } 31 public void setEditParts(List list) { 32 parts = list; 33 } 34 35 protected boolean multiple = false; 36 public boolean isMultiple() { 37 return multiple; 38 } 39 public void setMultiple(boolean multiple) { 40 this.multiple = multiple; 41 } 42 } 43 | Popular Tags |