KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > objectweb > celtix > tools > processors > java2 > types > SayHi


1
2 package org.objectweb.celtix.tools.processors.java2.types;
3
4 import javax.xml.bind.annotation.AccessType;
5 import javax.xml.bind.annotation.XmlAccessorType;
6 import javax.xml.bind.annotation.XmlRootElement;
7 import javax.xml.bind.annotation.XmlType;
8
9
10 /**
11  * <p>Java class for sayHi element declaration.
12  *
13  * <p>The following schema fragment specifies the expected content contained within this class.
14  *
15  * <pre>
16  * &lt;element name="sayHi">
17  * &lt;complexType>
18  * &lt;complexContent>
19  * &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
20  * &lt;/restriction>
21  * &lt;/complexContent>
22  * &lt;/complexType>
23  * &lt;/element>
24  * </pre>
25  *
26  *
27  */

28 @XmlAccessorType(AccessType.FIELD)
29 @XmlType(name = "")
30 @XmlRootElement(name = "sayHi")
31 public class SayHi {
32
33
34 }
35
Popular Tags