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

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

  oFolderData : {},

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

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

    this.__super = oContentAddSettings;

    this.__setContentType( 'CALENDAR' );
  },

  /**
   *
   * QuickAddSettings['deriveSettings']['processing']['Subjects']
   * QuickAddSettings['defaultSettings']['processing']['Subjects']
   *
   */
  getFullSettings : function()
  {
    var retval = this.__super.getFullSettings();

    this.__initDefaultSettings( retval );

    return retval;
  }
}

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