KickJava   Java API By Example, From Geeks To Geeks.

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


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.03.2005 </p>
6  * <p> Author: Daniel Mazurek </p>
7 **/

8 package com.nightlabs.editor2d.request;
9
10 import java.util.List JavaDoc;
11
12 public interface EditorGroupRequest
13 {
14   /**
15    * Returns a List containing the EditParts making this Request.
16    *
17    * @return A List containing the EditParts making this Request.
18    */

19   public List JavaDoc getEditParts();
20   
21   /**
22    * Sets the EditParts making this Request to the given List.
23    *
24    * @param list The List of EditParts.
25    */

26   public void setEditParts(List JavaDoc list);
27     
28 }
29
Popular Tags