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


  __construct : function()
  {
    var oContentAddSettings = new ContentAddSettings();

    jQuery.extend( true, this, oContentAddSettings );
    jQuery.extend( true, this, ContentAddSettings_Workflow$Class );

    this.__super = oContentAddSettings;

    this.__setContentType( 'WORKFLOW' );
  },

  getFullSettings : function()
  {
    var retval = this.__super.getFullSettings();

    this.__initDefaultSettings( retval );

    return retval;
  }
}

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