KickJava   Java API By Example, From Geeks To Geeks.

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


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.29 at 03:19:11 PM GMT+07:00
6
//
7

8
9 package com.mvnforum.jaxb.db;
10
11
12 /**
13  * Java content class for MessageFolderType 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 380)
15  * <p>
16  * <pre>
17  * &lt;complexType name="MessageFolderType">
18  * &lt;complexContent>
19  * &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
20  * &lt;sequence>
21  * &lt;element name="FolderName" type="{http://www.w3.org/2001/XMLSchema}string"/>
22  * &lt;element name="FolderOrder" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
23  * &lt;element name="FolderCreationDate" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
24  * &lt;element name="FolderModifiedDate" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
25  * &lt;element name="MessageList" type="{}MessageList" minOccurs="0"/>
26  * &lt;/sequence>
27  * &lt;/restriction>
28  * &lt;/complexContent>
29  * &lt;/complexType>
30  * </pre>
31  *
32  */

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

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

52     void setFolderCreationDate(java.lang.String JavaDoc value);
53
54     /**
55      * Gets the value of the folderName property.
56      *
57      * @return
58      * possible object is
59      * {@link java.lang.String}
60      */

61     java.lang.String JavaDoc getFolderName();
62
63     /**
64      * Sets the value of the folderName property.
65      *
66      * @param value
67      * allowed object is
68      * {@link java.lang.String}
69      */

70     void setFolderName(java.lang.String JavaDoc value);
71
72     /**
73      * Gets the value of the messageList property.
74      *
75      * @return
76      * possible object is
77      * {@link com.mvnforum.jaxb.db.MessageList}
78      */

79     com.mvnforum.jaxb.db.MessageList getMessageList();
80
81     /**
82      * Sets the value of the messageList property.
83      *
84      * @param value
85      * allowed object is
86      * {@link com.mvnforum.jaxb.db.MessageList}
87      */

88     void setMessageList(com.mvnforum.jaxb.db.MessageList value);
89
90     /**
91      * Gets the value of the folderModifiedDate property.
92      *
93      * @return
94      * possible object is
95      * {@link java.lang.String}
96      */

97     java.lang.String JavaDoc getFolderModifiedDate();
98
99     /**
100      * Sets the value of the folderModifiedDate property.
101      *
102      * @param value
103      * allowed object is
104      * {@link java.lang.String}
105      */

106     void setFolderModifiedDate(java.lang.String JavaDoc value);
107
108     /**
109      * Gets the value of the folderOrder property.
110      *
111      */

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

118     void setFolderOrder(int value);
119
120 }
121
Popular Tags