01: //
02: // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v1.0.5-b16-fcs
03: // See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a>
04: // Any modifications to this file will be lost upon recompilation of the source schema.
05: // Generated on: 2005.12.17 at 09:43:27 AM GMT+07:00
06: //
07:
08: package com.mvnforum.jaxb.db;
09:
10: /**
11: * Java content class for GroupMemberList complex type.
12: * <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 59)
13: * <p>
14: * <pre>
15: * <complexType name="GroupMemberList">
16: * <complexContent>
17: * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
18: * <sequence>
19: * <element name="GroupMember" type="{}GroupMemberType" maxOccurs="unbounded" minOccurs="0"/>
20: * </sequence>
21: * </restriction>
22: * </complexContent>
23: * </complexType>
24: * </pre>
25: *
26: */
27: public interface GroupMemberList {
28:
29: /**
30: * Gets the value of the GroupMember property.
31: *
32: * <p>
33: * This accessor method returns a reference to the live list,
34: * not a snapshot. Therefore any modification you make to the
35: * returned list will be present inside the JAXB object.
36: * This is why there is not a <CODE>set</CODE> method for the GroupMember property.
37: *
38: * <p>
39: * For example, to add a new item, do as follows:
40: * <pre>
41: * getGroupMember().add(newItem);
42: * </pre>
43: *
44: *
45: * <p>
46: * Objects of the following type(s) are allowed in the list
47: * {@link com.mvnforum.jaxb.db.GroupMemberType}
48: *
49: */
50: java.util.List getGroupMember();
51:
52: }
|