KickJava   Java API By Example, From Geeks To Geeks.

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


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 FavoriteThreadList 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 222)
15  * <p>
16  * <pre>
17  * &lt;complexType name="FavoriteThreadList">
18  * &lt;complexContent>
19  * &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
20  * &lt;sequence>
21  * &lt;element name="FavoriteThread" type="{}FavoriteThreadType" maxOccurs="unbounded" minOccurs="0"/>
22  * &lt;/sequence>
23  * &lt;/restriction>
24  * &lt;/complexContent>
25  * &lt;/complexType>
26  * </pre>
27  *
28  */

29 public interface FavoriteThreadList {
30
31
32     /**
33      * Gets the value of the FavoriteThread property.
34      *
35      * <p>
36      * This accessor method returns a reference to the live list,
37      * not a snapshot. Therefore any modification you make to the
38      * returned list will be present inside the JAXB object.
39      * This is why there is not a <CODE>set</CODE> method for the FavoriteThread property.
40      *
41      * <p>
42      * For example, to add a new item, do as follows:
43      * <pre>
44      * getFavoriteThread().add(newItem);
45      * </pre>
46      *
47      *
48      * <p>
49      * Objects of the following type(s) are allowed in the list
50      * {@link com.mvnforum.jaxb.db.FavoriteThreadType}
51      *
52      */

53     java.util.List JavaDoc getFavoriteThread();
54
55 }
56
Popular Tags