Type.registerNamespace('AAGMExplorer');
AAGMExplorer.autocomplete=function() {
AAGMExplorer.autocomplete.initializeBase(this);
this._timeout = 0;
this._userContext = null;
this._succeeded = null;
this._failed = null;
}
AAGMExplorer.autocomplete.prototype={
FilterSearch:function(prefixText,succeededCallback, failedCallback, userContext) {
return this._invoke(AAGMExplorer.autocomplete.get_path(), 'FilterSearch',false,{prefixText:prefixText},succeededCallback,failedCallback,userContext); }}
AAGMExplorer.autocomplete.registerClass('AAGMExplorer.autocomplete',Sys.Net.WebServiceProxy);
AAGMExplorer.autocomplete._staticInstance = new AAGMExplorer.autocomplete();
AAGMExplorer.autocomplete.set_path = function(value) { AAGMExplorer.autocomplete._staticInstance._path = value; }
AAGMExplorer.autocomplete.get_path = function() { return AAGMExplorer.autocomplete._staticInstance._path; }
AAGMExplorer.autocomplete.set_timeout = function(value) { AAGMExplorer.autocomplete._staticInstance._timeout = value; }
AAGMExplorer.autocomplete.get_timeout = function() { return AAGMExplorer.autocomplete._staticInstance._timeout; }
AAGMExplorer.autocomplete.set_defaultUserContext = function(value) { AAGMExplorer.autocomplete._staticInstance._userContext = value; }
AAGMExplorer.autocomplete.get_defaultUserContext = function() { return AAGMExplorer.autocomplete._staticInstance._userContext; }
AAGMExplorer.autocomplete.set_defaultSucceededCallback = function(value) { AAGMExplorer.autocomplete._staticInstance._succeeded = value; }
AAGMExplorer.autocomplete.get_defaultSucceededCallback = function() { return AAGMExplorer.autocomplete._staticInstance._succeeded; }
AAGMExplorer.autocomplete.set_defaultFailedCallback = function(value) { AAGMExplorer.autocomplete._staticInstance._failed = value; }
AAGMExplorer.autocomplete.get_defaultFailedCallback = function() { return AAGMExplorer.autocomplete._staticInstance._failed; }
AAGMExplorer.autocomplete.set_path("/autocomplete.asmx");
AAGMExplorer.autocomplete.FilterSearch= function(prefixText,onSuccess,onFailed,userContext) {AAGMExplorer.autocomplete._staticInstance.FilterSearch(prefixText,onSuccess,onFailed,userContext); }
