Package ro.sync.ecss.extensions.api
Interface AuthorConstants
-
- All Known Subinterfaces:
AuthorAccess
@API(type=NOT_EXTENDABLE, src=PUBLIC) public interface AuthorConstants
Interface containing the constants used in Author API.
-
-
Field Summary
Fields Modifier and Type Field Description static java.lang.String
ARG_VALUE_FALSE
Constant used for operation argument value.static java.lang.String
ARG_VALUE_TRUE
Constant used for operation argument value.static java.lang.String
MOVE_DOWN
Constant used for operation argument value.static java.lang.String
MOVE_UP
Constant used for operation argument value.static java.lang.String
POSITION_AFTER
The insertion location is after the selected node.static java.lang.String
POSITION_BEFORE
The insertion location is before the selected node.static java.lang.String
POSITION_INSIDE
Deprecated.Use the constant POSITION_INSIDE_FIRST instead.static java.lang.String
POSITION_INSIDE_AT_THE_BEGINNING
Constant used for operation argument value.static java.lang.String
POSITION_INSIDE_AT_THE_END
Constant used for operation argument value.static java.lang.String
POSITION_INSIDE_FIRST
The insertion location is inside the selected node as the first child.static java.lang.String
POSITION_INSIDE_LAST
The insertion location is inside the selected node as the last child.static java.lang.String
SELECT_CONTENT
Constant used for operation argument value.static java.lang.String
SELECT_ELEMENT
Constant used for operation argument value.static java.lang.String
SELECT_NONE
Constant used for operation argument value.
-
-
-
Field Detail
-
POSITION_BEFORE
static final java.lang.String POSITION_BEFORE
The insertion location is before the selected node.- See Also:
- Constant Field Values
-
POSITION_AFTER
static final java.lang.String POSITION_AFTER
The insertion location is after the selected node.- See Also:
- Constant Field Values
-
POSITION_INSIDE
@Deprecated static final java.lang.String POSITION_INSIDE
Deprecated.Use the constant POSITION_INSIDE_FIRST instead.The insertion location is inside the selected node as the first child.- See Also:
- Constant Field Values
-
POSITION_INSIDE_FIRST
static final java.lang.String POSITION_INSIDE_FIRST
The insertion location is inside the selected node as the first child.- See Also:
- Constant Field Values
-
POSITION_INSIDE_LAST
static final java.lang.String POSITION_INSIDE_LAST
The insertion location is inside the selected node as the last child.- See Also:
- Constant Field Values
-
ARG_VALUE_TRUE
static final java.lang.String ARG_VALUE_TRUE
Constant used for operation argument value.- See Also:
- Constant Field Values
-
ARG_VALUE_FALSE
static final java.lang.String ARG_VALUE_FALSE
Constant used for operation argument value.- See Also:
- Constant Field Values
-
SELECT_NONE
static final java.lang.String SELECT_NONE
Constant used for operation argument value. It means that no selection should be performed.- See Also:
- Constant Field Values
-
SELECT_ELEMENT
static final java.lang.String SELECT_ELEMENT
Constant used for operation argument value. It means that the current element should be selected.- See Also:
- Constant Field Values
-
SELECT_CONTENT
static final java.lang.String SELECT_CONTENT
Constant used for operation argument value. It means that the content of the current element should be selected.- See Also:
- Constant Field Values
-
POSITION_INSIDE_AT_THE_BEGINNING
static final java.lang.String POSITION_INSIDE_AT_THE_BEGINNING
Constant used for operation argument value. It means that the caret should be positioned inside the element, right after the start tag.- See Also:
- Constant Field Values
-
POSITION_INSIDE_AT_THE_END
static final java.lang.String POSITION_INSIDE_AT_THE_END
Constant used for operation argument value. It means that the caret should be positioned inside the element, right before the end tag.- See Also:
- Constant Field Values
-
MOVE_UP
static final java.lang.String MOVE_UP
Constant used for operation argument value. It means that the block at caret or blocks selected will move up.- See Also:
- Constant Field Values
-
MOVE_DOWN
static final java.lang.String MOVE_DOWN
Constant used for operation argument value. It means that the block at caret or blocks selected will move down.- See Also:
- Constant Field Values
-
-