var LivedoorWeatherHacks=function() {
LivedoorWeatherHacks.initializeBase(this);
this._timeout = 0;
this._userContext = null;
this._succeeded = null;
this._failed = null;
}
LivedoorWeatherHacks.prototype={
GetWeatherInfo:function(city,day,succeededCallback, failedCallback, userContext) {
return this._invoke(LivedoorWeatherHacks.get_path(), 'GetWeatherInfo',false,{city:city,day:day},succeededCallback,failedCallback,userContext); }}
LivedoorWeatherHacks.registerClass('LivedoorWeatherHacks',Sys.Net.WebServiceProxy);
LivedoorWeatherHacks._staticInstance = new LivedoorWeatherHacks();
LivedoorWeatherHacks.set_path = function(value) { 
var e = Function._validateParams(arguments, [{name: 'path', type: String}]); if (e) throw e; LivedoorWeatherHacks._staticInstance._path = value; }
LivedoorWeatherHacks.get_path = function() { return LivedoorWeatherHacks._staticInstance._path; }
LivedoorWeatherHacks.set_timeout = function(value) { var e = Function._validateParams(arguments, [{name: 'timeout', type: Number}]); if (e) throw e; if (value < 0) { throw Error.argumentOutOfRange('value', value, Sys.Res.invalidTimeout); }
LivedoorWeatherHacks._staticInstance._timeout = value; }
LivedoorWeatherHacks.get_timeout = function() { 
return LivedoorWeatherHacks._staticInstance._timeout; }
LivedoorWeatherHacks.set_defaultUserContext = function(value) { 
LivedoorWeatherHacks._staticInstance._userContext = value; }
LivedoorWeatherHacks.get_defaultUserContext = function() { 
return LivedoorWeatherHacks._staticInstance._userContext; }
LivedoorWeatherHacks.set_defaultSucceededCallback = function(value) { 
var e = Function._validateParams(arguments, [{name: 'defaultSucceededCallback', type: Function}]); if (e) throw e; LivedoorWeatherHacks._staticInstance._succeeded = value; }
LivedoorWeatherHacks.get_defaultSucceededCallback = function() { 
return LivedoorWeatherHacks._staticInstance._succeeded; }
LivedoorWeatherHacks.set_defaultFailedCallback = function(value) { 
var e = Function._validateParams(arguments, [{name: 'defaultFailedCallback', type: Function}]); if (e) throw e; LivedoorWeatherHacks._staticInstance._failed = value; }
LivedoorWeatherHacks.get_defaultFailedCallback = function() { 
return LivedoorWeatherHacks._staticInstance._failed; }
LivedoorWeatherHacks.set_path("/LivedoorWeatherHacks.asmx");
LivedoorWeatherHacks.GetWeatherInfo= function(city,day,onSuccess,onFailed,userContext) {LivedoorWeatherHacks._staticInstance.GetWeatherInfo(city,day,onSuccess,onFailed,userContext); }
var gtc = Sys.Net.WebServiceProxy._generateTypedConstructor;
if (typeof(LivedoorWeatherInfo) === 'undefined') {
var LivedoorWeatherInfo=gtc("LivedoorWeatherInfo");
LivedoorWeatherInfo.registerClass('LivedoorWeatherInfo');
}
