Type.registerNamespace('Supertext.Controls.Util');
Supertext.Controls.Util.CountryList=function() {
Supertext.Controls.Util.CountryList.initializeBase(this);
this._timeout = 0;
this._userContext = null;
this._succeeded = null;
this._failed = null;
}
Supertext.Controls.Util.CountryList.prototype={
_get_path:function() {
 var p = this.get_path();
 if (p) return p;
 else return Supertext.Controls.Util.CountryList._staticInstance.get_path();},
HelloWorld:function(succeededCallback, failedCallback, userContext) {
return this._invoke(this._get_path(), 'HelloWorld',false,{},succeededCallback,failedCallback,userContext); },
GetCompleteCountryList:function(culture,succeededCallback, failedCallback, userContext) {
return this._invoke(this._get_path(), 'GetCompleteCountryList',false,{culture:culture},succeededCallback,failedCallback,userContext); }}
Supertext.Controls.Util.CountryList.registerClass('Supertext.Controls.Util.CountryList',Sys.Net.WebServiceProxy);
Supertext.Controls.Util.CountryList._staticInstance = new Supertext.Controls.Util.CountryList();
Supertext.Controls.Util.CountryList.set_path = function(value) { Supertext.Controls.Util.CountryList._staticInstance.set_path(value); }
Supertext.Controls.Util.CountryList.get_path = function() { return Supertext.Controls.Util.CountryList._staticInstance.get_path(); }
Supertext.Controls.Util.CountryList.set_timeout = function(value) { Supertext.Controls.Util.CountryList._staticInstance.set_timeout(value); }
Supertext.Controls.Util.CountryList.get_timeout = function() { return Supertext.Controls.Util.CountryList._staticInstance.get_timeout(); }
Supertext.Controls.Util.CountryList.set_defaultUserContext = function(value) { Supertext.Controls.Util.CountryList._staticInstance.set_defaultUserContext(value); }
Supertext.Controls.Util.CountryList.get_defaultUserContext = function() { return Supertext.Controls.Util.CountryList._staticInstance.get_defaultUserContext(); }
Supertext.Controls.Util.CountryList.set_defaultSucceededCallback = function(value) { Supertext.Controls.Util.CountryList._staticInstance.set_defaultSucceededCallback(value); }
Supertext.Controls.Util.CountryList.get_defaultSucceededCallback = function() { return Supertext.Controls.Util.CountryList._staticInstance.get_defaultSucceededCallback(); }
Supertext.Controls.Util.CountryList.set_defaultFailedCallback = function(value) { Supertext.Controls.Util.CountryList._staticInstance.set_defaultFailedCallback(value); }
Supertext.Controls.Util.CountryList.get_defaultFailedCallback = function() { return Supertext.Controls.Util.CountryList._staticInstance.get_defaultFailedCallback(); }
Supertext.Controls.Util.CountryList.set_enableJsonp = function(value) { Supertext.Controls.Util.CountryList._staticInstance.set_enableJsonp(value); }
Supertext.Controls.Util.CountryList.get_enableJsonp = function() { return Supertext.Controls.Util.CountryList._staticInstance.get_enableJsonp(); }
Supertext.Controls.Util.CountryList.set_jsonpCallbackParameter = function(value) { Supertext.Controls.Util.CountryList._staticInstance.set_jsonpCallbackParameter(value); }
Supertext.Controls.Util.CountryList.get_jsonpCallbackParameter = function() { return Supertext.Controls.Util.CountryList._staticInstance.get_jsonpCallbackParameter(); }
Supertext.Controls.Util.CountryList.set_path("/WS/CountryList.asmx");
Supertext.Controls.Util.CountryList.HelloWorld= function(onSuccess,onFailed,userContext) {Supertext.Controls.Util.CountryList._staticInstance.HelloWorld(onSuccess,onFailed,userContext); }
Supertext.Controls.Util.CountryList.GetCompleteCountryList= function(culture,onSuccess,onFailed,userContext) {Supertext.Controls.Util.CountryList._staticInstance.GetCompleteCountryList(culture,onSuccess,onFailed,userContext); }
var gtc = Sys.Net.WebServiceProxy._generateTypedConstructor;
if (typeof(Supertext.Controls.Util.Country) === 'undefined') {
Supertext.Controls.Util.Country=gtc("Supertext.Controls.Util.Country");
Supertext.Controls.Util.Country.registerClass('Supertext.Controls.Util.Country');
}

