LPEX
4.4.0

com.ibm.lpex.core
Interface LpexConstants

All Known Implementing Classes:
Cobol400Parser, Cobol400SqlCicsParser, CobolParser, CobolSqlCicsParser, CppCicsParser, CppCicsParserAIX, CppCicsParserOS2, CppCicsParserWIN, CppParser, CppParserAIX, CppParserOS2, CppParserWIN, CppSqlParser, CppSqlParserAIX, CppSqlParserOS2, CppSqlParserWIN, FortranFixedFormParser, FortranParser, HtmlParser, ILECobolParser, ILECobolSqlCicsParser, JavaParser, JavaSqlParser, JclParser, JclParserJES2ESA, LpexCommonParser, PliParser, PropertiesParser, RexxParser, SqlParser, TestParser1, TestParser2, XmlParser, XslParser

public interface LpexConstants

Editor constants. Most are reserved for use by the editor packages, and differ between LPEX releases.


Field Summary
static String HELP_COMMAND_MAP
          Default map of editor items to HTML panels for the help command.
static String LPEX_VERSION
          LPEX driver specification version.
static String MSG_POPUP_COMMENT
          Key for pop-up menu item text.
static String MSG_POPUP_ERRORS
          Key for pop-up menu item text.
static String MSG_POPUP_EXCLUDESELECTION
          Key for pop-up menu item text.
static String MSG_POPUP_FILTERVIEWMENU
          Key for pop-up menu item text.
static String MSG_POPUP_INSERTMENU
          Key for pop-up menu item text.
static String MSG_POPUP_SELECTEDMENU
          Key for pop-up menu item text.
static String MSG_POPUP_SHOWALL
          Key for pop-up menu item text.
static String MSG_POPUP_SOURCEMENU
          Key for pop-up menu item text.
static String MSG_POPUP_TASKS
          Key for pop-up menu item text.
static String MSG_POPUP_UNCOMMENT
          Key for pop-up menu item text.
static int PARSE_PENDING_CHANGE_MASK
          Flag indicating the type of change for incremental parse.
static int PARSE_PENDING_INSERT_MASK
          Flag indicating the type of change for incremental parse.
static int PARSE_PENDING_NEXT_DELETED_MASK
          Flag indicating the type of change for incremental parse.
static int PARSE_PENDING_NEXT_SHOW_DELETED_MASK
          Flag indicating the type of change for incremental parse.
static int PARSE_PENDING_PREV_DELETED_MASK
          Flag indicating the type of change for incremental parse.
static int PARSE_PENDING_PREV_SHOW_DELETED_MASK
          Flag indicating the type of change for incremental parse.
static int PARSE_PENDING_UNDO_MASK
          Flag indicating the type of change for incremental parse.
static int PLATFORM_AWT
          AWT LPEX development platform: JDK AWT/Swing.
static int PLATFORM_SWT
          SWT LPEX development platform: Eclipse technology SWT.
static String PLATFORM_SWT_KEY
          Infix for editor properties keys specific to SWT LPEX.
static int SHOW_ALL
          Screen refresh after running an LpexBaseAction.
static int SHOW_DOCUMENT
          Screen refresh after running an LpexBaseAction.
static int SHOW_NONE
          Screen refresh after running an LpexBaseAction.
static int SHOW_VIEW
          Screen refresh after running an LpexBaseAction.
static String STATUS_FIELDS_NOINSERT
          Internal value for the status parameter.
static String STATUS_FIELDS_TRUNCATE
          Internal value for the status parameter.
static String STATUS_FILE_ERRORREADING
          Internal value for the status parameter.
static String STATUS_FILE_INCORRECTENCODING
          Internal value for the status parameter.
static String STATUS_FILE_NOTFOUND
          Internal value for the status parameter.
static String STATUS_FINDTEXT_INVALIDPATTERN
          Internal value for the status parameter.
static String STATUS_FINDTEXT_NOTFOUND
          Internal value for the status parameter.
static String STATUS_FINDTEXT_ONLYOCCURRENCE
          Internal value for the status parameter.
static String STATUS_FINDTEXT_READONLY
          Internal value for the status parameter.
static String STATUS_FINDTEXT_WRAPPED
          Internal value for the status parameter.
static String STATUS_LOCATE_NOSEQUENCETEXT
          Internal value for the status parameter.
static String STATUS_LOCATE_NOTFOUND
          Internal value for the status parameter.
static String STATUS_LOCATE_WRAPPED
          Internal value for the status parameter.
static String STATUS_SAVE_CANCELLED
          Internal value for the status parameter.
static String STATUS_SAVE_FAILED
          Internal value for the status parameter.
static String STATUS_TEXTLIMIT_ENFORCED
          Internal value for the status parameter.
static String STATUS_TEXTLIMIT_OVERFLOW
          Internal value for the status parameter.
static String STATUS_UNDO_NOTHINGUNDONE
          Internal value for the status parameter.
 

Field Detail

LPEX_VERSION

static final String LPEX_VERSION
LPEX driver specification version.

See Also:
Constant Field Values

PLATFORM_AWT

static final int PLATFORM_AWT
AWT LPEX development platform: JDK AWT/Swing.

See Also:
Constant Field Values

PLATFORM_SWT

static final int PLATFORM_SWT
SWT LPEX development platform: Eclipse technology SWT.

See Also:
Constant Field Values

PLATFORM_SWT_KEY

static final String PLATFORM_SWT_KEY
Infix for editor properties keys specific to SWT LPEX.

See Also:
Constant Field Values

PARSE_PENDING_CHANGE_MASK

static final int PARSE_PENDING_CHANGE_MASK
Flag indicating the type of change for incremental parse. The element text has changed, or this is a newly-inserted element. In the case of a newly-inserted element, flag PARSE_PENDING_INSERT_MASK is also set. When this element has been added to the parse-pending list as a result of an undo or redo action, flag PARSE_PENDING_UNDO_MASK is also set.

See Also:
LpexView.parsePending(int), Constant Field Values

PARSE_PENDING_NEXT_DELETED_MASK

static final int PARSE_PENDING_NEXT_DELETED_MASK
Flag indicating the type of change for incremental parse. One or more elements following this element have been deleted.

See Also:
LpexView.parsePending(int), Constant Field Values

PARSE_PENDING_PREV_DELETED_MASK

static final int PARSE_PENDING_PREV_DELETED_MASK
Flag indicating the type of change for incremental parse. One or more elements before this element have been deleted.

See Also:
LpexView.parsePending(int), Constant Field Values

PARSE_PENDING_NEXT_SHOW_DELETED_MASK

static final int PARSE_PENDING_NEXT_SHOW_DELETED_MASK
Flag indicating the type of change for incremental parse. One or more show elements following this element have been deleted.

See Also:
LpexView.parsePending(int), Constant Field Values

PARSE_PENDING_PREV_SHOW_DELETED_MASK

static final int PARSE_PENDING_PREV_SHOW_DELETED_MASK
Flag indicating the type of change for incremental parse. One or more show elements before this element have been deleted.

See Also:
LpexView.parsePending(int), Constant Field Values

PARSE_PENDING_INSERT_MASK

static final int PARSE_PENDING_INSERT_MASK
Flag indicating the type of change for incremental parse. The element is a newly-inserted element (either through a direct operation or an undo / redo action). This flag is an additional qualifier for, and is set in conjunction with, flag PARSE_PENDING_CHANGE_MASK.

See Also:
LpexView.parsePending(int), Constant Field Values

PARSE_PENDING_UNDO_MASK

static final int PARSE_PENDING_UNDO_MASK
Flag indicating the type of change for incremental parse. The element has been added to the parse pending list as a result of an undo or redo action. This flag is an additional qualifier for, and is set in conjunction with, flag PARSE_PENDING_CHANGE_MASK.

See Also:
LpexView.parsePending(int), Constant Field Values

SHOW_NONE

static final int SHOW_NONE
Screen refresh after running an LpexBaseAction. No document views need refreshing.

See Also:
Constant Field Values

SHOW_VIEW

static final int SHOW_VIEW
Screen refresh after running an LpexBaseAction. The document view in which the action ran should be refreshed.

See Also:
Constant Field Values

SHOW_DOCUMENT

static final int SHOW_DOCUMENT
Screen refresh after running an LpexBaseAction. All the views of the document in which the action ran should be refreshed.

See Also:
Constant Field Values

SHOW_ALL

static final int SHOW_ALL
Screen refresh after running an LpexBaseAction. All the currently open document views should be refreshed.

See Also:
Constant Field Values

MSG_POPUP_SELECTEDMENU

static final String MSG_POPUP_SELECTEDMENU
Key for pop-up menu item text.

See Also:
Constant Field Values

MSG_POPUP_EXCLUDESELECTION

static final String MSG_POPUP_EXCLUDESELECTION
Key for pop-up menu item text.

See Also:
Constant Field Values

MSG_POPUP_SHOWALL

static final String MSG_POPUP_SHOWALL
Key for pop-up menu item text.

See Also:
Constant Field Values

MSG_POPUP_FILTERVIEWMENU

static final String MSG_POPUP_FILTERVIEWMENU
Key for pop-up menu item text.

See Also:
Constant Field Values

MSG_POPUP_ERRORS

static final String MSG_POPUP_ERRORS
Key for pop-up menu item text.

See Also:
Constant Field Values

MSG_POPUP_TASKS

static final String MSG_POPUP_TASKS
Key for pop-up menu item text.

See Also:
Constant Field Values

MSG_POPUP_SOURCEMENU

static final String MSG_POPUP_SOURCEMENU
Key for pop-up menu item text.

See Also:
Constant Field Values

MSG_POPUP_COMMENT

static final String MSG_POPUP_COMMENT
Key for pop-up menu item text.

See Also:
Constant Field Values

MSG_POPUP_UNCOMMENT

static final String MSG_POPUP_UNCOMMENT
Key for pop-up menu item text.

See Also:
Constant Field Values

MSG_POPUP_INSERTMENU

static final String MSG_POPUP_INSERTMENU
Key for pop-up menu item text.

See Also:
Constant Field Values

STATUS_FINDTEXT_INVALIDPATTERN

static final String STATUS_FINDTEXT_INVALIDPATTERN
Internal value for the status parameter.

See Also:
Constant Field Values

STATUS_FINDTEXT_NOTFOUND

static final String STATUS_FINDTEXT_NOTFOUND
Internal value for the status parameter.

See Also:
Constant Field Values

STATUS_FINDTEXT_ONLYOCCURRENCE

static final String STATUS_FINDTEXT_ONLYOCCURRENCE
Internal value for the status parameter.

See Also:
Constant Field Values

STATUS_FINDTEXT_READONLY

static final String STATUS_FINDTEXT_READONLY
Internal value for the status parameter.

See Also:
Constant Field Values

STATUS_FINDTEXT_WRAPPED

static final String STATUS_FINDTEXT_WRAPPED
Internal value for the status parameter.

See Also:
Constant Field Values

STATUS_FIELDS_NOINSERT

static final String STATUS_FIELDS_NOINSERT
Internal value for the status parameter.

See Also:
Constant Field Values

STATUS_FIELDS_TRUNCATE

static final String STATUS_FIELDS_TRUNCATE
Internal value for the status parameter.

See Also:
Constant Field Values

STATUS_LOCATE_NOSEQUENCETEXT

static final String STATUS_LOCATE_NOSEQUENCETEXT
Internal value for the status parameter.

See Also:
Constant Field Values

STATUS_LOCATE_NOTFOUND

static final String STATUS_LOCATE_NOTFOUND
Internal value for the status parameter.

See Also:
Constant Field Values

STATUS_LOCATE_WRAPPED

static final String STATUS_LOCATE_WRAPPED
Internal value for the status parameter.

See Also:
Constant Field Values

STATUS_SAVE_CANCELLED

static final String STATUS_SAVE_CANCELLED
Internal value for the status parameter.

See Also:
Constant Field Values

STATUS_SAVE_FAILED

static final String STATUS_SAVE_FAILED
Internal value for the status parameter.

See Also:
Constant Field Values

STATUS_FILE_ERRORREADING

static final String STATUS_FILE_ERRORREADING
Internal value for the status parameter.

See Also:
Constant Field Values

STATUS_FILE_NOTFOUND

static final String STATUS_FILE_NOTFOUND
Internal value for the status parameter.

See Also:
Constant Field Values

STATUS_FILE_INCORRECTENCODING

static final String STATUS_FILE_INCORRECTENCODING
Internal value for the status parameter.

See Also:
Constant Field Values

STATUS_TEXTLIMIT_ENFORCED

static final String STATUS_TEXTLIMIT_ENFORCED
Internal value for the status parameter.

See Also:
Constant Field Values

STATUS_TEXTLIMIT_OVERFLOW

static final String STATUS_TEXTLIMIT_OVERFLOW
Internal value for the status parameter.

See Also:
Constant Field Values

STATUS_UNDO_NOTHINGUNDONE

static final String STATUS_UNDO_NOTHINGUNDONE
Internal value for the status parameter.

See Also:
Constant Field Values

HELP_COMMAND_MAP

static final String HELP_COMMAND_MAP
Default map of editor items to HTML panels for the help command.

See Also:
Constant Field Values

LPEX
4.4.0

Copyright � 2016 IBM Corp. All Rights Reserved.

Note: This documentation is for part of an interim API that is still under development and expected to change significantly before reaching stability. It is being made available at this early stage to solicit feedback from pioneering adopters on the understanding that any code that uses this API will almost certainly be broken (repeatedly) as the API evolves.