Class GUIConstants

java.lang.Object
de.aristaflow.adept2.model.globals.GUIConstants

public class GUIConstants extends Object
This class defines constants regarding the GUI of application components.
  • Field Summary

    Fields
    Modifier and Type
    Field
    Description
    static final String
    Identifier for an GUI context which provides an application with a AWT frame.
    static final String
    Identifier for an activity that is to be executed by a specific client application and does not represent an ExecutableComponent.
    static final String
    Identifier for an GUI context which provides a AWT frame to an application and which ensures that the GUI of the application component will be integrated into an eclipse environment.
    static final String
    Identifier for an GUI context which provides a SWT frame to an application and which ensures that the GUI of the application component will be integrated into an eclipse environment.
    static final String
    GUI Context ID for activities that should be handled by the EventManager.
    static final String
    Identifier for the HTML GUI context which allows for rendering HTML.
    static final String
    Identifier for an GUI context that is passed if no GUI is available or no GUI is requested by an application.
    static final String
    Identifier for an GUI context which provides an application with a SWT frame and acts as a file server.
    static final String
    Identifier for an GUI context which provides an application with a SWT frame.
    static final String
    Identifier for an URL context which provides a URL that usually encapsulates HTML.
  • Constructor Summary

    Constructors
    Constructor
    Description
     
  • Method Summary

    Methods inherited from class java.lang.Object

    clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
  • Field Details

    • NULL_CONTEXT

      public static final String NULL_CONTEXT
      Identifier for an GUI context that is passed if no GUI is available or no GUI is requested by an application.
      See Also:
    • EVENT_CONTEXT

      public static final String EVENT_CONTEXT
      GUI Context ID for activities that should be handled by the EventManager.
      See Also:
    • CLIENT_APPLICATION

      public static final String CLIENT_APPLICATION
      Identifier for an activity that is to be executed by a specific client application and does not represent an ExecutableComponent. Such activities can only be executed by a RuntimeService and each activity has to be started by the appropriate client application. These activities are bound to their client application and cannot be reused.
      See Also:
    • SWT_CONTEXT

      public static final String SWT_CONTEXT
      Identifier for an GUI context which provides an application with a SWT frame.
      See Also:
    • SWT_BROWSER_CONTEXT

      public static final String SWT_BROWSER_CONTEXT
      Identifier for an GUI context which provides an application with a SWT frame and acts as a file server.
      See Also:
    • ECLIPSE_AWARE_SWT_CONTEXT

      public static final String ECLIPSE_AWARE_SWT_CONTEXT
      Identifier for an GUI context which provides a SWT frame to an application and which ensures that the GUI of the application component will be integrated into an eclipse environment.
      See Also:
    • AWT_CONTEXT

      public static final String AWT_CONTEXT
      Identifier for an GUI context which provides an application with a AWT frame.
      See Also:
    • ECLIPSE_AWARE_AWT_CONTEXT

      public static final String ECLIPSE_AWARE_AWT_CONTEXT
      Identifier for an GUI context which provides a AWT frame to an application and which ensures that the GUI of the application component will be integrated into an eclipse environment.
      See Also:
    • HTML_CONTEXT

      public static final String HTML_CONTEXT
      Identifier for the HTML GUI context which allows for rendering HTML.
      See Also:
    • URL_CONTEXT

      public static final String URL_CONTEXT
      Identifier for an URL context which provides a URL that usually encapsulates HTML. This can be rendered in a HTML_CONTEXT.
      See Also:
  • Constructor Details

    • GUIConstants

      public GUIConstants()