NewsRotator.RotatorDesigner.prototype = {
            initialize: function () {
                NewsRotator.RotatorDesigner.callBaseMethod(this, 'initialize');
            },
            dispose: function () {
                NewsRotator.RotatorDesigner.callBaseMethod(this, 'dispose');
            },
            refreshUI: function () {
                var controlData = this.get_controlData();
          
                jQuery("#txtTitle").val(controlData.Title);
            },
            applyChanges: function () {
          
                var controlData = this.get_controlData();
          
                controlData.Title = jQuery("#txtTitle").val();
            },
            get_controlData: function () {
                return this.get_propertyEditor().get_control();
            },
            get_propertyEditor: function () {
                return this._propertyEditor;
            }
        }