KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > com > sun > enterprise > tools > common > dd > webservice > JavaTypeType


1 /**
2  * This generated bean class JavaTypeType matches the schema element java-typeType
3  *
4  * ===============================================================
5  *
6  *
7  * This is a generic type that designates a Java primitive
8  * type or a fully qualified name of a Java interface/type,
9  * or an array of such types.
10  *
11  *
12  * ===============================================================
13  * Generated on Fri Apr 22 15:42:51 PDT 2005
14  */

15
16 package com.sun.enterprise.tools.common.dd.webservice;
17
18 import org.w3c.dom.*;
19 import org.netbeans.modules.schema2beans.*;
20 import java.beans.*;
21 import java.util.*;
22
23 // BEGIN_NOI18N
24

25 public class JavaTypeType extends org.netbeans.modules.schema2beans.BaseBean
26 {
27
28     static Vector comparators = new Vector();
29
30
31     public JavaTypeType() {
32         this(Common.USE_DEFAULT_VALUES);
33     }
34
35     public JavaTypeType(int options)
36     {
37         super(comparators, new org.netbeans.modules.schema2beans.Version(1, 2, 0));
38         // Properties (see root bean comments for the bean graph)
39
this.initialize(options);
40     }
41
42     // Setting the default values of the properties
43
void initialize(int options)
44     {
45
46     }
47
48     //
49
public static void addComparator(org.netbeans.modules.schema2beans.BeanComparator c) {
50         comparators.add(c);
51     }
52
53     //
54
public static void removeComparator(org.netbeans.modules.schema2beans.BeanComparator c) {
55         comparators.remove(c);
56     }
57     public void validate() throws org.netbeans.modules.schema2beans.ValidateException {
58     }
59
60     // Dump the content of this bean returning it as a String
61
public void dump(StringBuffer JavaDoc str, String JavaDoc indent){
62         String JavaDoc s;
63         Object JavaDoc o;
64         org.netbeans.modules.schema2beans.BaseBean n;
65     }
66     public String JavaDoc dumpBeanNode(){
67         StringBuffer JavaDoc str = new StringBuffer JavaDoc();
68         str.append("JavaTypeType\n"); // NOI18N
69
this.dump(str, "\n "); // NOI18N
70
return str.toString();
71     }}
72
73 // END_NOI18N
74

75
76 /*
77  * The contents of this file are subject to the terms
78  * of the Common Development and Distribution License
79  * (the License). You may not use this file except in
80  * compliance with the License.
81  *
82  * You can obtain a copy of the license at
83  * https://glassfish.dev.java.net/public/CDDLv1.0.html or
84  * glassfish/bootstrap/legal/CDDLv1.0.txt.
85  * See the License for the specific language governing
86  * permissions and limitations under the License.
87  *
88  * When distributing Covered Code, include this CDDL
89  * Header Notice in each file and include the License file
90  * at glassfish/bootstrap/legal/CDDLv1.0.txt.
91  * If applicable, add the following below the CDDL Header,
92  * with the fields enclosed by brackets [] replaced by
93  * you own identifying information:
94  * "Portions Copyrighted [year] [name of copyright owner]"
95  *
96  * Copyright 2006 Sun Microsystems, Inc. All rights reserved.
97  */

98
Popular Tags