KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > com > nightlabs > editor2d > request > LineCreateRequest


1 /**
2  * <p> Project: com.nightlabs.editor2d </p>
3  * <p> Copyright: Copyright (c) 2004 </p>
4  * <p> Company: NightLabs GmbH (Germany) </p>
5  * <p> Creation Date: 17.02.2005 </p>
6  * <p> Author: Daniel Mazurek </p>
7 **/

8 package com.nightlabs.editor2d.request;
9
10 import org.eclipse.draw2d.geometry.Rectangle;
11
12
13 public class LineCreateRequest
14 extends EditorCreateRequest
15 {
16   protected Rectangle creationBounds;
17   public Rectangle getCreationBounds() {
18     return creationBounds;
19   }
20   public void setCreationBounds(Rectangle creationBounds) {
21     this.creationBounds = creationBounds;
22   }
23 }
24
Popular Tags