KickJava   Java API By Example, From Geeks To Geeks.

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


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 MemberForumPermissionType 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 148)
15  * <p>
16  * <pre>
17  * &lt;complexType name="MemberForumPermissionType">
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"/>
22  * &lt;element name="ForumPermission" type="{http://www.w3.org/2001/XMLSchema}int"/>
23  * &lt;/sequence>
24  * &lt;/restriction>
25  * &lt;/complexContent>
26  * &lt;/complexType>
27  * </pre>
28  *
29  */

30 public interface MemberForumPermissionType {
31
32
33     /**
34      * Gets the value of the memberName property.
35      *
36      * @return
37      * possible object is
38      * {@link java.lang.String}
39      */

40     java.lang.String JavaDoc getMemberName();
41
42     /**
43      * Sets the value of the memberName property.
44      *
45      * @param value
46      * allowed object is
47      * {@link java.lang.String}
48      */

49     void setMemberName(java.lang.String JavaDoc value);
50
51     /**
52      * Gets the value of the forumPermission property.
53      *
54      */

55     int getForumPermission();
56
57     /**
58      * Sets the value of the forumPermission property.
59      *
60      */

61     void setForumPermission(int value);
62
63 }
64
Popular Tags