Type.registerNamespace("AjaxSTYSeries");
AjaxSTYSeries.MyComponent = function()
{
    AjaxSTYSeries.MyComponent.initializeBase(this);
    this._var = 0;
}
AjaxSTYSeries.MyComponent.prototype =
{
    SetValue: function(_value)
    {
        this._var = _value;
    },
    GetValue: function()
    {
        return this._var;
    }
}
AjaxSTYSeries.MyComponent.inheritsFrom(Sys.Component);
AjaxSTYSeries.MyComponent.registerClass('AjaxSTYSeries.MyComponent', Sys.Component);
