1 /* 2 * Copyright 2003, 2004 The Apache Software Foundation 3 * 4 * Licensed under the Apache License, Version 2.0 (the "License"); 5 * you may not use this file except in compliance with the License. 6 * You may obtain a copy of the License at 7 * 8 * http://www.apache.org/licenses/LICENSE-2.0 9 * 10 * Unless required by applicable law or agreed to in writing, software 11 * distributed under the License is distributed on an "AS IS" BASIS, 12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 13 * See the License for the specific language governing permissions and 14 * limitations under the License. 15 16 */ 17 package org.apache.ws.jaxme.xs.jaxb; 18 19 import org.apache.ws.jaxme.xs.xml.XsObject; 20 import org.apache.ws.jaxme.xs.xml.XsObjectFactory; 21 22 23 24 /** <p>Implementation of the XsObjectFactory for parsing a 25 * JAXB schema.</p> 26 * 27 * @author <a HREF="mailto:joe@ispsoft.de">Jochen Wiedmann</a> 28 */ 29 public interface JAXBXsObjectFactory extends XsObjectFactory { 30 /** <p>Returns a new instance of JAXBProperty.BaseType.</p> 31 */ 32 public JAXBProperty.BaseType newBaseType(XsObject pParent); 33 34 /** <p>Returns a new instance of JAXBClass.</p> 35 */ 36 public JAXBClass newJAXBClass(XsObject pParent); 37 38 /** <p>Returns a new instance of JAXBGlobalBindings.</p> 39 */ 40 public JAXBGlobalBindings newJAXBGlobalBindings(XsObject pParent); 41 42 /** <p>Returns a new instance of JAXBJavadoc.</p> 43 */ 44 public JAXBJavadoc newJAXBJavadoc(XsObject pParent); 45 46 /** <p>Returns a new instance of NameXmlTransform.</p> 47 */ 48 public JAXBSchemaBindings.NameXmlTransform newNameXmlTransform(XsObject pParent); 49 50 /** <p>Returns a new instance of NameTransformation.</p> 51 */ 52 public JAXBSchemaBindings.NameTransformation newNameTransformation(XsObject pParent); 53 54 /** <p>Returns a new instance of Package.</p> 55 */ 56 public JAXBSchemaBindings.Package newPackage(XsObject pParent); 57 58 /** <p>Returns a new instance of JAXBProperty.</p> 59 */ 60 public JAXBProperty newJAXBProperty(XsObject pParent); 61 62 /** <p>Returns a new instance of JAXBJavaType.</p> 63 */ 64 public JAXBJavaType newJAXBJavaType(XsObject pParent); 65 66 /** <p>Returns a new instance of JAXBGlobalJavaType.</p> 67 */ 68 public JAXBJavaType.JAXBGlobalJavaType newJAXBGlobalJavaType(XsObject pParent); 69 70 /** <p>Returns a new instance of JAXBSchemaBindings.</p> 71 */ 72 public JAXBSchemaBindings newJAXBSchemaBindings(XsObject pParent); 73 74 /** <p>Returns a new instance of JAXBTypesafeEnumClass.</p> 75 */ 76 public JAXBTypesafeEnumClass newJAXBTypesafeEnumClass(XsObject pParent); 77 78 /** <p>Returns a new instance of JAXBTypesafeEnumMember.</p> 79 */ 80 public JAXBTypesafeEnumMember newJAXBTypesafeEnumMember(XsObject pParent); 81 } 82