public enum GUIBlockingScope extends Enum<GUIBlockingScope>
This enumeration provides type of GUI blocking while background task is executed. Blocking GUI prevents unwanted user input during task execution. The following types of GUI blocking are supported:
NONE
- do not block GUITOP_LEVEL
- block entire GUI (top level window)VIEW
- block GUI part which is defined by a DMXView
COMPONENTS
- block set of specified GUI componentsEnum Constant and Description |
---|
COMPONENTS
Block a set of speciieid GUI components.
|
NONE
Do not block anything.
|
TOP_LEVEL
Block entire GUI (top-level window).
|
VIEW
Block GUI of specified view.
|
Modifier and Type | Method and Description |
---|---|
static GUIBlockingScope |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static GUIBlockingScope[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final GUIBlockingScope NONE
public static final GUIBlockingScope TOP_LEVEL
public static final GUIBlockingScope VIEW
public static final GUIBlockingScope COMPONENTS
public static GUIBlockingScope[] values()
for (GUIBlockingScope c : GUIBlockingScope.values()) System.out.println(c);
public static GUIBlockingScope valueOf(String name)
name
- the name of the enum constant to be returned.IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is nullCopyright © 2012-2014 Vektor Software. All Rights Reserved.