/**********************************************************************
Copyright (c) 2009 Asfun Net.
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
**********************************************************************/
package net.asfun.jangod.parse;
public final class ParserConstants {
public static final int TOKEN_PREFIX = '{';
public static final int TOKEN_POSTFIX = '}';
public static final int TOKEN_FIXED = 0;
public static final int TOKEN_NOTE = '#';
public static final int TOKEN_TAG = '%';
public static final int TOKEN_ECHO = '{';
public static final int TOKEN_ECHO2 = '}';
public static final int TOKEN_MACRO = '!';
public static final char VL = '|';
public static final char CL = ':';
public static final char CM = ',';
public static final char SQ = '\'';
public static final char DQ = '"';
public static final char SP = ' ';
public static final String SCPACE_STR = "\\s";
}