/**
 * @namespace
 * Class Application
 * 
 * This class is intended to encapsulate all the methods and attributes of an Application.
 * <br />
 * <br />
 * Created on 04/03/2009
 * 
 * @class Layer
 *
 * @property {String} _id The id of the Application (name)
 * @property {String} _codeURL The URL of the JS code of the App
 * @property {String} _iconURL The URL of the icon code of the App
 * 
 * @author "Pablo Casado (pablo.casado@layers.com)"
 * @version <1.0>
 *  
 */
function Application(id, codeURL, iconURL, isMultiple){
	this._id = id;
	this._codeURL = codeURL;
	this._iconURL = iconURL;
	this._isMultiple = isMultiple;
}


Application.prototype._id;
Application.prototype._codeURL;
Application.prototype._iconURL;
Application.prototype._isMultiple;
