📄 i_cmswpconstants.java
字号:
/** Name of the template containing panel bar definitions */
public static final String C_PANELTEMPLATE = "panelTemplate";
/**
* Name of the template containing input field definitions
*/
public static final String C_INPUTTEMPLATE = "inputTemplate";
/**
* Name of the template containing error field definitions
*/
public static final String C_ERRORTEMPLATE = "errorTemplate";
/**
* Name of the template containing messagebox definitions
*/
public static final String C_BOXTEMPLATE = "messageboxTemplate";
/**
* Name of the template containing radiobutton definitions
*/
public static final String C_RADIOTEMPLATE = "radioTemplate";
// Constants for editors
/** Save action */
public static final String C_EDIT_ACTION_SAVE = "save";
/** Save & Exit action */
public static final String C_EDIT_ACTION_SAVEEXIT = "saveexit";
/** Exit action */
public static final String C_EDIT_ACTION_EXIT = "exit";
// tag defnitions
/** Name of the label tag in the label definition template */
public static final String C_TAG_PROJECTLIST_DEFAULT = "defaultprojectlist";
/** Name of the label tag in the label definition template */
public static final String C_TAG_MODULELIST_DEFAULT = "defaultmodulelist";
/** Name of the label tag in the label definition template */
public static final String C_TAG_PROJECTLIST_SNAPLOCK = "snaplock";
/** Name of the label tag in the label definition template */
public static final String C_TAG_LABEL = "label";
/** Name of the label tag in the input definiton template */
public static final String C_TAG_INPUTFIELD = "inputfield";
/** Name of the password tag in the input definiton template */
public static final String C_TAG_PASSWORD = "password";
/** Name of the startup tag in the input definiton template */
public static final String C_TAG_STARTUP = "STARTUP";
/** Name of the submitbutton tag in the button definiton template */
public static final String C_TAG_SUBMITBUTTON = "submitbutton";
/** Name of the errorbox tag in the error definiton template */
public static final String C_TAG_ERRORBOX = "errorbox";
/** Name of the errorbox tag in the error definiton template */
public static final String C_TAG_MESSAGEBOX = "messagepage";
/** Name of the select start tag in the input definiton template */
public static final String C_TAG_SELECTBOX_START = "selectbox.start";
/** Name of the select div start tag in the input definiton template */
public static final String C_TAG_SELECTBOX_START_DIV = "selectbox.startdiv";
/** Name of the select end tag in the input definiton template */
public static final String C_TAG_SELECTBOX_END = "selectbox.end";
/** Name of the selectbox "class" option tag in the input definiton template */
public static final String C_TAG_SELECTBOX_CLASS = "selectbox.class";
/** Name of the (select) option tag in the input definiton template */
public static final String C_TAG_SELECTBOX_OPTION = "selectbox.option";
/** Name of the (select) selected option tag in the input definiton template */
public static final String C_TAG_SELECTBOX_SELOPTION = "selectbox.seloption";
/** Name of the error?page tag in the error definiton template */
public static final String C_TAG_ERRORPAGE = "errorpagedefinition";
/** Panel bar starting sequence tag in the panel bar definiton template */
public static final String C_TAG_PANEL_STARTSEQ = "paneldef.startseq";
/** Panel bar ending sequence tag in the panel bar definiton template */
public static final String C_TAG_PANEL_ENDSEQ = "paneldef.endseq";
/** Panel bar sequence for separating background and text area in the panel bar definiton template */
public static final String C_TAG_PANEL_SEPBGTEXT = "paneldef.sepbgtext";
/** Panel bar sequence for active background in the panel bar definiton template */
public static final String C_TAG_PANEL_BGACTIVE = "paneldef.bgactive";
/** Panel bar sequence for inactive background in the panel bar definiton template */
public static final String C_TAG_PANEL_BGINACTIVE = "paneldef.bginactive";
/** Panel bar sequence for active text in the panel bar definiton template */
public static final String C_TAG_PANEL_TEXTACTIVE = "paneldef.textactive";
/** Panel bar sequence for inactive text in the panel bar definiton template */
public static final String C_TAG_PANEL_TEXTINACTIVE = "paneldef.textinactive";
// Parameters for buttons
/** Name of the button */
public static final String C_BUTTON_NAME = "name";
/** Action for the button */
public static final String C_BUTTON_ACTION = "action";
/** Alt text of the button */
public static final String C_BUTTON_ALT = "alt";
/** href text of the button */
public static final String C_BUTTON_HREF = "href";
/** Value of the button */
public static final String C_BUTTON_VALUE = "value";
/** Style of the button */
public static final String C_BUTTON_STYLE = "class";
/** width of the button */
public static final String C_BUTTON_WIDTH = "width";
/** method that should be used for deciding to (de)activate the button */
public static final String C_BUTTON_METHOD = "method";
// Parameters for icons
/** Name of the icon */
public static final String C_ICON_NAME = "name";
/** Action for the icon */
public static final String C_ICON_ACTION = "action";
/** Label of the icon */
public static final String C_ICON_LABEL = "label";
/** href text of the icon */
public static final String C_ICON_HREF = "href";
/** href target of the icon */
public static final String C_ICON_TARGET = "target";
/** method that should be used for deciding to (de)activate the icon */
public static final String C_ICON_ACTIVE_METHOD = "activemethod";
/** method that should be used for deciding whether the icon is visible */
public static final String C_ICON_VISIBLE_METHOD = "visiblemethod";
// Parameters for labels
/** Name of the value */
public static final String C_LABEL_VALUE = "value";
// Parameters for radiobuttons
/** Name of the radio buttons */
public static final String C_RADIO_RADIONAME = "radioname";
/** Name of the radio button value */
public static final String C_RADIO_NAME = "name";
/** Name of the radio button link */
public static final String C_RADIO_LINK = "link";
/** Name of the radio button image name */
public static final String C_RADIO_IMAGENAME = "image";
/** Datablock conatining the image option*/
public static final String C_RADIO_IMAGEOPTION = "optionalimage";
/** Datablock conatining the optional entry for the image*/
public static final String C_RADIO_IMAGEENTRY = "imageentry";
/** Datablock conatining the "checked" option*/
public static final String C_RADIO_SELECTEDOPTION = "optionalselected";
/** Datablock conatining the optional entry for the "checked" option */
public static final String C_RADIO_SELECTEDENTRY = "selectedentry";
/** Method of the radio buttons */
public static final String C_RADIO_METHOD = "method";
/** Name of the radio ordering information */
public static final String C_RADIO_ORDER = "order";
// Parameters for input fields
/** Name of the input field */
public static final String C_INPUT_NAME = "name";
/** Style class of the input field */
public static final String C_INPUT_CLASS = "class";
/** Size of the input field */
public static final String C_INPUT_SIZE = "size";
/** Length of the input field */
public static final String C_INPUT_LENGTH = "length";
/** Value of the input field */
public static final String C_INPUT_VALUE = "value";
/** Method of the input field */
public static final String C_INPUT_METHOD = "method";
/** Action of the input field */
public static final String C_INPUT_ACTION = "action";
/** Method of the projectlist field */
public static final String C_PROJECTLIST_METHOD = "method";
/** Method of the projectlist field */
public static final String C_PROJECTLIST_IDX = "idx";
/** Method of the projectlist field */
public static final String C_PROJECTLIST_MENU = "menu";
/** Method of the projectlist field */
public static final String C_PROJECTLIST_LOCKSTATE = "lockstate";
/** Method of the projectlist field */
public static final String C_PROJECTLIST_NAME = "name";
/** Method of the projectlist field */
public static final String C_PROJECTLIST_NAME_ESCAPED = "name_escaped";
/** Method of the projectlist field */
public static final String C_PROJECTLIST_PROJECTID = "id";
/** Method of the projectlist field */
public static final String C_PROJECTLIST_DESCRIPTION = "description";
/** Method of the projectlist field */
public static final String C_PROJECTLIST_STATE = "STATE";
/** Method of the projectlist field */
public static final String C_PROJECTLIST_STATE_LOCKED = "project.state.FILESLOCKED";
/** Method of the projectlist field */
public static final String C_PROJECTLIST_STATE_UNLOCKED = "project.state.FILESUNLOCKED";
/** Method of the projectlist field */
public static final String C_PROJECTLIST_PROJECTMANAGER = "projectmanager";
/** Method of the projectlist field */
public static final String C_PROJECTLIST_PROJECTWORKER = "projectworker";
/** Method of the projectlist field */
public static final String C_PROJECTLIST_DATECREATED = "datecreated";
/** Method of the projectlist field */
public static final String C_PROJECTLIST_OWNER = "owner";
/** Method of the modulelist field */
public static final String C_MODULELIST_METHOD = "method";
/** Method of the modulelist field */
public static final String C_MODULELIST_IDX = "idx";
/** Method of the modulelist field */
public static final String C_MODULELIST_NAME = "name";
/** Method of the modulelist field */
public static final String C_MODULELIST_NICE_NAME = "nicename";
/** Method of the modulelist field */
public static final String C_MODULELIST_VERSION = "version";
/** Method of the modulelist field */
public static final String C_MODULELIST_AUTHOR = "author";
/** Method of the modulelist field */
public static final String C_MODULELIST_DATECREATED = "datecreated";
/** Method of the modulelist field */
public static final String C_MODULELIST_DATEUPLOADED = "dateuploaded";
// Parameters for error boxes and error pages
/** Title of the error box */
public static final String C_ERROR_TITLE = "title";
/** Message of the error box */
public static final String C_ERROR_MESSAGE = "message";
/** Reason of the error box */
public static final String C_ERROR_REASON = "reason";
/** Suggestion of the error box */
public static final String C_ERROR_SUGGESTION = "suggestion";
/** Link of the error box */
public static final String C_ERROR_LINK = "ref";
/** Static text in the error box */
public static final String C_ERROR_MSG_REASON = "msgreason";
/** Button label of the error box */
public static final String C_ERROR_MSG_BUTTON = "msgbutton";
/** Button label of the error box */
public static final String C_ERROR_MSG_DETAILS = "details";
// Parameters for error boxes and error pages
/** Title of the messagebox */
public static final String C_MESSAGE_TITLE = "title";
/** First message of the messagebox */
public static final String C_MESSAGE_MESSAGE1 = "message1";
/** Second message of the messagebox */
public static final String C_MESSAGE_MESSAGE2 = "message2";
/** First button of the messagebox */
public static final String C_MESSAGE_BUTTON1 = "button1";
/** Second button of the messagebox */
public static final String C_MESSAGE_BUTTON2 = "button2";
/** Link on button1 of the messagebox */
public static final String C_MESSAGE_LINK1 = "link1";
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -