//$.getScript( '/js/vne/ContentAddSettings.js' );

/**
 * Define the ContentAddSettings class/prototype
 */
ContentAddSettings_DynamicContent$Class = {

  sFormURN      : '',

  __construct : function()
  {
    jQuery.extend( true, this, ContentAddSettings$Class );
    jQuery.extend( true, this, ContentAddSettings_DynamicContent$Class );
  },

  setFormUrn : function( sFormURN )
  {
    if(( typeof this.__super_DynamicContent != 'undefined' ) &&
       ( typeof this.__super_DynamicContent.setFormUrn != 'undefined' ))
    {
      this.__super_DynamicContent.setFormUrn( sFormURN )
    }
    else
    {
      this.sFormURN = sFormURN;
    }

    return this;
  },

  setTypeUrn : function( sTypeURN )
  {
    return this.setFormUrn( sTypeURN );
  },

  /**
   *
   * QuickAddSettings['defaultSettings']['preferences']['sFormURN']
   *
   */
  getFullSettings : function()
  {
    var retval = {};

    retval = { 'sFormURN' : this.sFormURN };

    return retval;
  }
}

/**
 * Alias the constructor, thus defining the "instantiable"
 * class.
 */
ContentAddSettings_DynamicContent = ContentAddSettings_DynamicContent$Class.__construct;

