source: trunk/quest-core-events-patrick/src/main/java/de/ugoe/cs/quest/eventcore/guimodel/GUIElement.java @ 449

Last change on this file since 449 was 449, checked in by pharms, 12 years ago

Initial import.

  • Property svn:executable set to *
File size: 1.9 KB
Line 
1//-------------------------------------------------------------------------------------------------
2// Module    : $RCSfile: GUIElement.java,v $
3// Version   : $Revision: 0.0 $  $Author: Patrick $  $Date: 06.11.2011 10:26:40 $
4// Project   : TaskTreePerformanceTest
5// Creation  : 2011 by Patrick
6// Copyright : Patrick Harms, 2011
7//-------------------------------------------------------------------------------------------------
8
9package de.ugoe.cs.quest.eventcore.guimodel;
10
11
12//-------------------------------------------------------------------------------------------------
13/**
14 * TODO comment
15 *
16 * @version $Revision: $ $Date: $
17 * @author  2011, last modified by $Author: $
18 */
19//-------------------------------------------------------------------------------------------------
20public interface GUIElement
21{
22  //-----------------------------------------------------------------------------------------------
23  /**
24   *
25   */
26  //-----------------------------------------------------------------------------------------------
27  public void setParent(GUIElement parent);
28 
29  //-----------------------------------------------------------------------------------------------
30  /**
31   *
32   */
33  //-----------------------------------------------------------------------------------------------
34  public GUIElement getParent();
35 
36  //-----------------------------------------------------------------------------------------------
37  /**
38   *
39   */
40  //-----------------------------------------------------------------------------------------------
41  public String getOriginalTypeInfo();
42 
43  //-----------------------------------------------------------------------------------------------
44  /**
45   * @param other
46   * @return
47   */
48  //-----------------------------------------------------------------------------------------------
49  public boolean equals(GUIElement other);
50
51}
Note: See TracBrowser for help on using the repository browser.