/*
* Copyright (C) 2001, 2002 Robert MacGrogan
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation; either
* version 2.1 of the License, or (at your option) any later version.
*
* This library is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public
* License along with this library; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*
*
* $Archive: SourceJammer$
* $FileName: KeywordTags.java$
* $FileID: 4473$
*
* Last change:
* $AuthorName: Rob MacGrogan$
* $Date: 4/23/03 5:19 PM$
* $Comment: Replaced GPL header with LGPL header.$
*/
package org.sourcejammer.server.keywords;
/**
* Title: $FileName: KeywordTags.java$
* @version $VerNum: 3$
* @author $AuthorName: Rob MacGrogan$<br><br>
*
* $Description: Parse and expand keywords.$<br>
* $KeyWordsOff: $
*/
public interface KeywordTags {
public static final String KEYWORD_INDICATOR = "$";
public static final String KEYWORD_NAME_VAL_SEP = ":";
public static final String ARCHIVE_NAME = KEYWORD_INDICATOR + "Archive" + KEYWORD_NAME_VAL_SEP;
public static final String USER_NAME = KEYWORD_INDICATOR + "Author" + KEYWORD_NAME_VAL_SEP;
public static final String USER_FULL_NAME = KEYWORD_INDICATOR + "AuthorName" + KEYWORD_NAME_VAL_SEP;
public static final String FILE_LOCATION = KEYWORD_INDICATOR + "Location" + KEYWORD_NAME_VAL_SEP;
public static final String MODIFIED_DATE = KEYWORD_INDICATOR + "Date" + KEYWORD_NAME_VAL_SEP;
public static final String VERSION_NUMBER = KEYWORD_INDICATOR + "VerNum" + KEYWORD_NAME_VAL_SEP;
public static final String FILE_ID = KEYWORD_INDICATOR + "FileID" + KEYWORD_NAME_VAL_SEP;
public static final String VERSION_ID = KEYWORD_INDICATOR + "VerID" + KEYWORD_NAME_VAL_SEP;
public static final String FILE_NAME = KEYWORD_INDICATOR + "FileName" + KEYWORD_NAME_VAL_SEP;
public static final String HISTORY = KEYWORD_INDICATOR + "History" + KEYWORD_NAME_VAL_SEP;
public static final String LAST_COMMENT = KEYWORD_INDICATOR + "Comment" + KEYWORD_NAME_VAL_SEP;
public static final String DESCRIPTION = KEYWORD_INDICATOR + "Description" + KEYWORD_NAME_VAL_SEP;
public static final String OFF = KEYWORD_INDICATOR + "KeyWordsOff" + KEYWORD_NAME_VAL_SEP;
public static final String HIST_COL_VER = "Ver";
public static final String HIST_COL_USER = "User";
public static final String HIST_COL_DATE = "Date";
public static final String HIST_COL_TASK = "Task";
public static final String HIST_SEPARATOR = "------------------------------------------------------------";
public static final int HIST_HALF_LINE_LEN = 25;
public static final int LINE_MAX_LENGTH = 80;
public static final char SPACE = ' ';
}
|