KickJava   Java API By Example, From Geeks To Geeks.

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


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 AttachmentType 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 271)
15  * <p>
16  * <pre>
17  * &lt;complexType name="AttachmentType">
18  * &lt;complexContent>
19  * &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
20  * &lt;sequence>
21  * &lt;element name="MemberName" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
22  * &lt;element name="AttachFilename" type="{http://www.w3.org/2001/XMLSchema}string"/>
23  * &lt;element name="AttachFileSize" type="{http://www.w3.org/2001/XMLSchema}int"/>
24  * &lt;element name="AttachMimeType" type="{http://www.w3.org/2001/XMLSchema}string"/>
25  * &lt;element name="AttachDesc" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
26  * &lt;element name="AttachCreationIP" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
27  * &lt;element name="AttachCreationDate" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
28  * &lt;element name="AttachModifiedDate" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
29  * &lt;element name="AttachDownloadCount" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
30  * &lt;element name="AttachOption" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
31  * &lt;element name="AttachStatus" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
32  * &lt;/sequence>
33  * &lt;/restriction>
34  * &lt;/complexContent>
35  * &lt;/complexType>
36  * </pre>
37  *
38  */

39 public interface AttachmentType {
40
41
42     /**
43      * Gets the value of the attachModifiedDate property.
44      *
45      * @return
46      * possible object is
47      * {@link java.lang.String}
48      */

49     java.lang.String JavaDoc getAttachModifiedDate();
50
51     /**
52      * Sets the value of the attachModifiedDate property.
53      *
54      * @param value
55      * allowed object is
56      * {@link java.lang.String}
57      */

58     void setAttachModifiedDate(java.lang.String JavaDoc value);
59
60     /**
61      * Gets the value of the attachFilename property.
62      *
63      * @return
64      * possible object is
65      * {@link java.lang.String}
66      */

67     java.lang.String JavaDoc getAttachFilename();
68
69     /**
70      * Sets the value of the attachFilename property.
71      *
72      * @param value
73      * allowed object is
74      * {@link java.lang.String}
75      */

76     void setAttachFilename(java.lang.String JavaDoc value);
77
78     /**
79      * Gets the value of the attachCreationIP property.
80      *
81      * @return
82      * possible object is
83      * {@link java.lang.String}
84      */

85     java.lang.String JavaDoc getAttachCreationIP();
86
87     /**
88      * Sets the value of the attachCreationIP property.
89      *
90      * @param value
91      * allowed object is
92      * {@link java.lang.String}
93      */

94     void setAttachCreationIP(java.lang.String JavaDoc value);
95
96     /**
97      * Gets the value of the attachOption property.
98      *
99      */

100     int getAttachOption();
101
102     /**
103      * Sets the value of the attachOption property.
104      *
105      */

106     void setAttachOption(int value);
107
108     /**
109      * Gets the value of the attachStatus property.
110      *
111      */

112     int getAttachStatus();
113
114     /**
115      * Sets the value of the attachStatus property.
116      *
117      */

118     void setAttachStatus(int value);
119
120     /**
121      * Gets the value of the attachDesc property.
122      *
123      * @return
124      * possible object is
125      * {@link java.lang.String}
126      */

127     java.lang.String JavaDoc getAttachDesc();
128
129     /**
130      * Sets the value of the attachDesc property.
131      *
132      * @param value
133      * allowed object is
134      * {@link java.lang.String}
135      */

136     void setAttachDesc(java.lang.String JavaDoc value);
137
138     /**
139      * Gets the value of the memberName property.
140      *
141      * @return
142      * possible object is
143      * {@link java.lang.String}
144      */

145     java.lang.String JavaDoc getMemberName();
146
147     /**
148      * Sets the value of the memberName property.
149      *
150      * @param value
151      * allowed object is
152      * {@link java.lang.String}
153      */

154     void setMemberName(java.lang.String JavaDoc value);
155
156     /**
157      * Gets the value of the attachMimeType property.
158      *
159      * @return
160      * possible object is
161      * {@link java.lang.String}
162      */

163     java.lang.String JavaDoc getAttachMimeType();
164
165     /**
166      * Sets the value of the attachMimeType property.
167      *
168      * @param value
169      * allowed object is
170      * {@link java.lang.String}
171      */

172     void setAttachMimeType(java.lang.String JavaDoc value);
173
174     /**
175      * Gets the value of the attachDownloadCount property.
176      *
177      */

178     int getAttachDownloadCount();
179
180     /**
181      * Sets the value of the attachDownloadCount property.
182      *
183      */

184     void setAttachDownloadCount(int value);
185
186     /**
187      * Gets the value of the attachCreationDate property.
188      *
189      * @return
190      * possible object is
191      * {@link java.lang.String}
192      */

193     java.lang.String JavaDoc getAttachCreationDate();
194
195     /**
196      * Sets the value of the attachCreationDate property.
197      *
198      * @param value
199      * allowed object is
200      * {@link java.lang.String}
201      */

202     void setAttachCreationDate(java.lang.String JavaDoc value);
203
204     /**
205      * Gets the value of the attachFileSize property.
206      *
207      */

208     int getAttachFileSize();
209
210     /**
211      * Sets the value of the attachFileSize property.
212      *
213      */

214     void setAttachFileSize(int value);
215
216 }
217
Popular Tags