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