KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > com > sun > japex > testsuite > ParamType


1 //
2
// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v1.0.3-b18-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.06.14 at 12:02:17 PDT
6
//
7

8
9 package com.sun.japex.testsuite;
10
11
12 /**
13  * Java content class for ParamType complex type.
14  * <p>The following schema fragment specifies the expected content contained within this java content object. (defined at file:/files/hudson/jobs/fi/workspace/fi/Japex/resources/testsuite.xsd line 8)
15  * <p>
16  * <pre>
17  * &lt;complexType name="ParamType">
18  * &lt;complexContent>
19  * &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
20  * &lt;attribute name="name" use="required" type="{http://www.w3.org/2001/XMLSchema}string" />
21  * &lt;attribute name="value" use="required" type="{http://www.w3.org/2001/XMLSchema}string" />
22  * &lt;/restriction>
23  * &lt;/complexContent>
24  * &lt;/complexType>
25  * </pre>
26  *
27  */

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

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

47     void setValue(java.lang.String JavaDoc value);
48
49     /**
50      * Gets the value of the name property.
51      *
52      * @return
53      * possible object is
54      * {@link java.lang.String}
55      */

56     java.lang.String JavaDoc getName();
57
58     /**
59      * Sets the value of the name property.
60      *
61      * @param value
62      * allowed object is
63      * {@link java.lang.String}
64      */

65     void setName(java.lang.String JavaDoc value);
66
67 }
68
Popular Tags