KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > jboss > test > webservice > jbws381 > WeatherForecasts


1 /*
2  /*
3  * JBoss, Home of Professional Open Source
4  * Copyright 2005, JBoss Inc., and individual contributors as indicated
5  * by the @authors tag. See the copyright.txt in the distribution for a
6  * full listing of individual contributors.
7  *
8  * This is free software; you can redistribute it and/or modify it
9  * under the terms of the GNU Lesser General Public License as
10  * published by the Free Software Foundation; either version 2.1 of
11  * the License, or (at your option) any later version.
12  *
13  * This software is distributed in the hope that it will be useful,
14  * but WITHOUT ANY WARRANTY; without even the implied warranty of
15  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
16  * Lesser General Public License for more details.
17  *
18  * You should have received a copy of the GNU Lesser General Public
19  * License along with this software; if not, write to the Free
20  * Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
21  * 02110-1301 USA, or see the FSF site: http://www.fsf.org.
22  */

23 //Auto Generated by jbossws - Please do not edit!!!
24
package org.jboss.test.webservice.jbws381;
25
26 public class WeatherForecasts
27 {
28
29    protected float latitude;
30
31    protected float longitude;
32
33    protected float allocationFactor;
34
35    protected java.lang.String JavaDoc fipsCode;
36
37    protected java.lang.String JavaDoc placeName;
38
39    protected java.lang.String JavaDoc stateCode;
40
41    protected java.lang.String JavaDoc status;
42
43    protected org.jboss.test.webservice.jbws381.WeatherData[] details;
44
45    public WeatherForecasts()
46    {
47    }
48
49    public WeatherForecasts(float latitude, float longitude, float allocationFactor, java.lang.String JavaDoc fipsCode,
50          java.lang.String JavaDoc placeName, java.lang.String JavaDoc stateCode, java.lang.String JavaDoc status,
51          org.jboss.test.webservice.jbws381.WeatherData[] details)
52    {
53       this.latitude = latitude;
54       this.longitude = longitude;
55       this.allocationFactor = allocationFactor;
56       this.fipsCode = fipsCode;
57       this.placeName = placeName;
58       this.stateCode = stateCode;
59       this.status = status;
60       this.details = details;
61    }
62
63    public float getLatitude()
64    {
65       return latitude;
66    }
67
68    public void setLatitude(float latitude)
69    {
70       this.latitude = latitude;
71    }
72
73    public float getLongitude()
74    {
75       return longitude;
76    }
77
78    public void setLongitude(float longitude)
79    {
80       this.longitude = longitude;
81    }
82
83    public float getAllocationFactor()
84    {
85       return allocationFactor;
86    }
87
88    public void setAllocationFactor(float allocationFactor)
89    {
90       this.allocationFactor = allocationFactor;
91    }
92
93    public java.lang.String JavaDoc getFipsCode()
94    {
95       return fipsCode;
96    }
97
98    public void setFipsCode(java.lang.String JavaDoc fipsCode)
99    {
100       this.fipsCode = fipsCode;
101    }
102
103    public java.lang.String JavaDoc getPlaceName()
104    {
105       return placeName;
106    }
107
108    public void setPlaceName(java.lang.String JavaDoc placeName)
109    {
110       this.placeName = placeName;
111    }
112
113    public java.lang.String JavaDoc getStateCode()
114    {
115       return stateCode;
116    }
117
118    public void setStateCode(java.lang.String JavaDoc stateCode)
119    {
120       this.stateCode = stateCode;
121    }
122
123    public java.lang.String JavaDoc getStatus()
124    {
125       return status;
126    }
127
128    public void setStatus(java.lang.String JavaDoc status)
129    {
130       this.status = status;
131    }
132
133    public org.jboss.test.webservice.jbws381.WeatherData[] getDetails()
134    {
135       return details;
136    }
137
138    public void setDetails(org.jboss.test.webservice.jbws381.WeatherData[] details)
139    {
140       this.details = details;
141    }
142
143 }
144
Popular Tags