/*********************************************************************************
//-----------------------------------------------------------------------------
// Class......: Properties value holder
//-----------------------------------------------------------------------------
// Notes......: Contains common useful property methods.
// Req........: - References are made to a static name 'JSProperties'
//                -> JSProperties = new JSProperties();           
//-----------------------------------------------------------------------------
 ********************************************************************************/

// CONSTRUCTOR
function JSProperties() {

	this.appBase = "";       // Application base context path
	this.dateFormat = "";    // Application dateFormat
	this.delimiter = "";     // Application common delimiter
	this.template = "";      // Application template

	//-----------------------------------------------------------------------------
	/**
	 * Getters and Setters
	 */
	 
	// Get: appBase
	this.getAppBase = function() {
		return this.appBase;
	}	
	// Set: appBase
	this.setAppBase = function(appBase) {
		this.appBase = appBase;
	}

	// Get: dateFormat
	this.getDateFormat = function() {
		return this.dateFormat;
	}	
	// Set: dateFormat
	this.setDateFormat = function(dateFormat) {
		this.dateFormat = dateFormat;
	}
	
	// Get: delimiter
	this.getDelimiter = function() {
		return this.delimiter;
	}	
	// Set: delimiter
	this.setDelimiter = function(delimiter) {
		this.delimiter = delimiter;
	}
	
	// Get: template
	this.getTemplate = function() {
		return this.template;
	}	
	// Set: template
	this.setTemplate = function(template) {
		this.template = template;
	}	
	
};








    