FlowOptions
Kind of class: | public class |
---|---|
Package: | |
Inherits from: |
|
Classpath: | org.asaplibrary.management.flow.FlowOptions |
File last modified: | Wednesday, 11 May 2011, 18:40:08 |
FlowSection relation types and display mode types. The options use bitwise operators, see ButtonStates for an example.
Summary
Constants
-
NONE
: uint
- Relation type.
-
EQUAL
: uint
- Relation type.
-
UNRELATED
: uint
- Relation type.
-
ROOT
: uint
- Relation type.
-
DISTANT
: uint
- Relation type.
-
SIBLING
: uint
- Relation type.
-
CHILD
: uint
- Relation type.
-
PARENT
: uint
- Relation type.
-
ANY
: uint
- Relation type.
-
START
: uint
- Display mode type.
-
START_END
: uint
- Display mode type.
-
STOP
: uint
- Display mode type.
-
STOP_END
: uint
- Display mode type.
Constants
ANY
static const ANY:uint = UNRELATED | ROOT | DISTANT | SIBLING | CHILD | PARENT
Relation type.
CHILD
static const CHILD:uint = (1 << 6)
Relation type.
DISTANT
static const DISTANT:uint = (1 << 4)
Relation type.
EQUAL
static const EQUAL:uint = (1 << 1)
Relation type.
NONE
static const NONE:uint = (1 << 0)
Relation type.
PARENT
static const PARENT:uint = (1 << 7)
Relation type.
ROOT
static const ROOT:uint = (1 << 3)
Relation type.
SIBLING
static const SIBLING:uint = (1 << 5)
Relation type.
START
static const START:uint = (1 << 8)
Display mode type.
START_END
static const START_END:uint = (1 << 9)
Display mode type.
STOP
static const STOP:uint = (1 << 10)
Display mode type.
STOP_END
static const STOP_END:uint = (1 << 11)
Display mode type.
UNRELATED
static const UNRELATED:uint = (1 << 2)
Relation type.