KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > jboss > test > webservice > jbws643 > KeywordDetailType


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

22 //Auto Generated by jbossws - Please do not edit!!!
23

24 package org.jboss.test.webservice.jbws643;
25
26 public class KeywordDetailType extends KeywordType
27 {
28
29    protected java.lang.Long JavaDoc searches;
30
31    protected java.lang.Integer JavaDoc tier;
32
33    protected java.lang.Long JavaDoc advancedImpressions;
34
35    protected java.math.BigDecimal JavaDoc topBid;
36
37    protected java.math.BigDecimal JavaDoc minimumBid;
38
39    protected java.lang.Boolean JavaDoc duplicate;
40
41    protected java.lang.Long JavaDoc contentMatchImpressions;
42
43    protected java.lang.Integer JavaDoc contentMatchPos1Clicks;
44
45    protected java.lang.Integer JavaDoc contentMatchPos2Clicks;
46
47    protected java.lang.Integer JavaDoc contentMatchPos3Clicks;
48
49    public KeywordDetailType()
50    {
51    }
52
53    public KeywordDetailType(java.lang.Long JavaDoc searches, java.lang.Integer JavaDoc tier, java.lang.Long JavaDoc advancedImpressions,
54          java.math.BigDecimal JavaDoc topBid, java.math.BigDecimal JavaDoc minimumBid, java.lang.Boolean JavaDoc duplicate,
55          java.lang.Long JavaDoc contentMatchImpressions, java.lang.Integer JavaDoc contentMatchPos1Clicks,
56          java.lang.Integer JavaDoc contentMatchPos2Clicks, java.lang.Integer JavaDoc contentMatchPos3Clicks)
57    {
58       this.searches = searches;
59       this.tier = tier;
60       this.advancedImpressions = advancedImpressions;
61       this.topBid = topBid;
62       this.minimumBid = minimumBid;
63       this.duplicate = duplicate;
64       this.contentMatchImpressions = contentMatchImpressions;
65       this.contentMatchPos1Clicks = contentMatchPos1Clicks;
66       this.contentMatchPos2Clicks = contentMatchPos2Clicks;
67       this.contentMatchPos3Clicks = contentMatchPos3Clicks;
68    }
69
70    public java.lang.Long JavaDoc getSearches()
71    {
72       return searches;
73    }
74
75    public void setSearches(java.lang.Long JavaDoc searches)
76    {
77       this.searches = searches;
78    }
79
80    public java.lang.Integer JavaDoc getTier()
81    {
82       return tier;
83    }
84
85    public void setTier(java.lang.Integer JavaDoc tier)
86    {
87       this.tier = tier;
88    }
89
90    public java.lang.Long JavaDoc getAdvancedImpressions()
91    {
92       return advancedImpressions;
93    }
94
95    public void setAdvancedImpressions(java.lang.Long JavaDoc advancedImpressions)
96    {
97       this.advancedImpressions = advancedImpressions;
98    }
99
100    public java.math.BigDecimal JavaDoc getTopBid()
101    {
102       return topBid;
103    }
104
105    public void setTopBid(java.math.BigDecimal JavaDoc topBid)
106    {
107       this.topBid = topBid;
108    }
109
110    public java.math.BigDecimal JavaDoc getMinimumBid()
111    {
112       return minimumBid;
113    }
114
115    public void setMinimumBid(java.math.BigDecimal JavaDoc minimumBid)
116    {
117       this.minimumBid = minimumBid;
118    }
119
120    public java.lang.Boolean JavaDoc getDuplicate()
121    {
122       return duplicate;
123    }
124
125    public void setDuplicate(java.lang.Boolean JavaDoc duplicate)
126    {
127       this.duplicate = duplicate;
128    }
129
130    public java.lang.Long JavaDoc getContentMatchImpressions()
131    {
132       return contentMatchImpressions;
133    }
134
135    public void setContentMatchImpressions(java.lang.Long JavaDoc contentMatchImpressions)
136    {
137       this.contentMatchImpressions = contentMatchImpressions;
138    }
139
140    public java.lang.Integer JavaDoc getContentMatchPos1Clicks()
141    {
142       return contentMatchPos1Clicks;
143    }
144
145    public void setContentMatchPos1Clicks(java.lang.Integer JavaDoc contentMatchPos1Clicks)
146    {
147       this.contentMatchPos1Clicks = contentMatchPos1Clicks;
148    }
149
150    public java.lang.Integer JavaDoc getContentMatchPos2Clicks()
151    {
152       return contentMatchPos2Clicks;
153    }
154
155    public void setContentMatchPos2Clicks(java.lang.Integer JavaDoc contentMatchPos2Clicks)
156    {
157       this.contentMatchPos2Clicks = contentMatchPos2Clicks;
158    }
159
160    public java.lang.Integer JavaDoc getContentMatchPos3Clicks()
161    {
162       return contentMatchPos3Clicks;
163    }
164
165    public void setContentMatchPos3Clicks(java.lang.Integer JavaDoc contentMatchPos3Clicks)
166    {
167       this.contentMatchPos3Clicks = contentMatchPos3Clicks;
168    }
169
170 }
171
Popular Tags