1 27 28 package org.nightlabs.editor2d.request; 29 30 import org.eclipse.draw2d.geometry.Rectangle; 31 32 33 public class LineCreateRequest 34 extends EditorCreateRequest 35 { 36 protected Rectangle creationBounds; 37 public Rectangle getCreationBounds() { 38 return creationBounds; 39 } 40 public void setCreationBounds(Rectangle creationBounds) { 41 this.creationBounds = creationBounds; 42 } 43 } 44 | Popular Tags |