All Downloads are FREE. Search and download functionalities are using the official Maven repository.

cfml.dictionary.preferences.DictionaryPreferenceConstants Maven / Gradle / Ivy

package cfml.dictionary.preferences;

public class DictionaryPreferenceConstants {
	
	/**
	 * @see DictionaryPreferences
	 */
	public static final String P_CFML_DICTIONARY = "dictionary.project";
	public static final String P_CFML_DICTIONARY_DEFAULT = "dictionary.project.default";
	public static final String DEFAULT_CFDIC = "default.dictionary";
	
	/** the dictionaries folder */
	public static final String DICTIONARY_DIR = "dictionary.dir";
	/** the cfml dictionary */
	public static final String CFDIC = "dictionary.cfml";
	/** the javascript dictionary */
	public static final String JSDIC = "dictionary.js";
	/** the SQL dictionary */
	public static final String SQLDIC = "dictionary.sql";
	/** the (yet to be made) html dictionary */
	public static final String HTDIC = "dictionary.html";
	
	/* XML KEYS _DO NOT CHANGE THESE_ * */
	/** the cfml dictionary */
	public static final String CFDIC_KEY = "CF_DICTIONARY";
	/** the javascript dictionary */
	public static final String JSDIC_KEY = "JS_DICTIONARY";
	/** the SQL dictionary */
	public static final String SQLDIC_KEY = "SQL_DICTIONARY";
	/** the (yet to be made) html dictionary */
	public static final String HTDIC_KEY = "HT_DICTIONARY";
	
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy