Package org.apache.ws.jaxme.xs.jaxb

Examples of org.apache.ws.jaxme.xs.jaxb.JAXBSimpleContentType


  protected JAXBPropertySG(TypeSG pComplexType, XSType pType) throws SAXException {
    typeSG = pComplexType.getComplexTypeSG().getSimpleContentSG().getTypeSG();
    String myPropertyName = null;
    boolean myGeneratedIsSetMethod = pComplexType.getSchema().isGeneratingIsSetMethod();
    XSSimpleContentType simpleContentType = pType.getComplexType().getSimpleContent();
    JAXBSimpleContentType jaxbSimpleContentType = null;
    if (simpleContentType instanceof JAXBSimpleContentType) {
      jaxbSimpleContentType = (JAXBSimpleContentType) simpleContentType;
      JAXBProperty jaxbProperty = jaxbSimpleContentType.getJAXBProperty();
      if (jaxbProperty != null) {
        myPropertyName = jaxbProperty.getName();
        Boolean jaxbGeneratedIsSetMethod = jaxbProperty.isGenerateIsSetMethod();
        if (jaxbGeneratedIsSetMethod != null) {
          myGeneratedIsSetMethod = jaxbGeneratedIsSetMethod.booleanValue();
View Full Code Here

TOP

Related Classes of org.apache.ws.jaxme.xs.jaxb.JAXBSimpleContentType

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.