KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > com > mvnforum > jaxb > db > RankType


1 //
2
// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v1.0.5-b16-fcs
3
// See <a HREF="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a>
4
// Any modifications to this file will be lost upon recompilation of the source schema.
5
// Generated on: 2005.12.17 at 09:43:27 AM GMT+07:00
6
//
7

8
9 package com.mvnforum.jaxb.db;
10
11
12 /**
13  * Java content class for RankType complex type.
14  * <p>The following schema fragment specifies the expected content contained within this java content object. (defined at file:/D:/working/mvnforum/contrib/phpbb2mvnforum-jaxb/schema/mvnforum.xsd line 74)
15  * <p>
16  * <pre>
17  * &lt;complexType name="RankType">
18  * &lt;complexContent>
19  * &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
20  * &lt;sequence>
21  * &lt;element name="RankMinPosts" type="{http://www.w3.org/2001/XMLSchema}int"/>
22  * &lt;element name="RankLevel" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
23  * &lt;element name="RankTitle" type="{http://www.w3.org/2001/XMLSchema}string"/>
24  * &lt;element name="RankImage" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
25  * &lt;element name="RankType" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
26  * &lt;element name="RankOption" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
27  * &lt;/sequence>
28  * &lt;/restriction>
29  * &lt;/complexContent>
30  * &lt;/complexType>
31  * </pre>
32  *
33  */

34 public interface RankType {
35
36
37     /**
38      * Gets the value of the rankImage property.
39      *
40      * @return
41      * possible object is
42      * {@link java.lang.String}
43      */

44     java.lang.String JavaDoc getRankImage();
45
46     /**
47      * Sets the value of the rankImage property.
48      *
49      * @param value
50      * allowed object is
51      * {@link java.lang.String}
52      */

53     void setRankImage(java.lang.String JavaDoc value);
54
55     /**
56      * Gets the value of the rankMinPosts property.
57      *
58      */

59     int getRankMinPosts();
60
61     /**
62      * Sets the value of the rankMinPosts property.
63      *
64      */

65     void setRankMinPosts(int value);
66
67     /**
68      * Gets the value of the rankTitle property.
69      *
70      * @return
71      * possible object is
72      * {@link java.lang.String}
73      */

74     java.lang.String JavaDoc getRankTitle();
75
76     /**
77      * Sets the value of the rankTitle property.
78      *
79      * @param value
80      * allowed object is
81      * {@link java.lang.String}
82      */

83     void setRankTitle(java.lang.String JavaDoc value);
84
85     /**
86      * Gets the value of the rankLevel property.
87      *
88      */

89     int getRankLevel();
90
91     /**
92      * Sets the value of the rankLevel property.
93      *
94      */

95     void setRankLevel(int value);
96
97     /**
98      * Gets the value of the rankType property.
99      *
100      */

101     int getRankType();
102
103     /**
104      * Sets the value of the rankType property.
105      *
106      */

107     void setRankType(int value);
108
109     /**
110      * Gets the value of the rankOption property.
111      *
112      */

113     int getRankOption();
114
115     /**
116      * Sets the value of the rankOption property.
117      *
118      */

119     void setRankOption(int value);
120
121 }
122
Popular Tags