01: /*
02: * JFolder, Copyright 2001-2006 Gary Steinmetz
03: *
04: * Distributable under LGPL license.
05: * See terms of license at gnu.org.
06: */
07:
08: package org.jfolder.common.utils.misc;
09:
10: //base classes
11:
12: //project specific classes
13:
14: //other classes
15:
16: public final class CommonSeparators {
17:
18: //
19: public final static String TOGGLE_LINK_SEPARATOR = ",";
20: public final static String BRANCH_SEPARATOR = "!";
21: public final static String HANDLE_SEPARATOR = "?";
22: public final static String PROPERTY_NAME_VALUE_SEPARATOR = "=";
23: public final static String SUB_TOKEN_SEPARATOR = "|";
24: //
25: public final static String LIST_CPC_SEPARATOR = "~";
26: //
27: public final static String SEPARATOR__SUB_SECTION_START = "(";
28: public final static String SEPARATOR__SUB_SECTION_END = ")";
29:
30: //
31: public final static int Z_INDEX__MACRO_POINTER = 1001;
32: public final static int Z_INDEX__WEB_PAGE_VIEW_HIGHLIGHT = 901;
33: public final static int Z_INDEX__CONCEPT_TAG_CREATION_OBJECT = 100;
34: public final static int Z_INDEX__WORKFLOW_TEMPLATE_TRANSITION = 0;
35: public final static int Z_INDEX__WORKFLOW_TEMPLATE_NODE = 1;
36: public final static int Z_INDEX__MENU_BASE = 101;
37: public final static int Z_INDEX__WEB_PAGE_VIEW = 30;
38:
39: private CommonSeparators() {
40: }
41: }
|