Package org.apache.ws.jaxme.generator.sg

Examples of org.apache.ws.jaxme.generator.sg.PropertySGChain


    xsType = null// Make this available to garbage collection.
    return result;
  }

  public void init(SimpleContentSG pController) throws SAXException {
    PropertySGChain chain = (PropertySGChain) pController.newPropertySGChain();
    propertySG = new PropertySGImpl(chain);
    propertySG.init();
  }
View Full Code Here


    namespaceList = pWildcard.getNamespaceList();
    processContents = pWildcard.getProcessContents();
  }
 
  public Object newPropertySGChain(AttributeSG pController) {
    PropertySGChain result;
    if (xsWildcard != null) {
      result = new AnyAttributePropertySG(pController, xsWildcard);
      xsWildcard = null;
    } else if (xsAttribute != null) {
      result = new JAXBPropertySG(pController, xsAttribute);
View Full Code Here

    }
    return result;
  }
 
  public void init(AttributeSG pController) throws SAXException {
    PropertySGChain chain = (PropertySGChain) pController.newPropertySGChain();
    propertySG = new PropertySGImpl(chain);
    propertySG.init();
  }
View Full Code Here

        PropertySG pSG;
        DirectAccessible element;
        if (isMixed) {
          LocalJavaField f = pJm.newJavaField(GroupUtil.getContentClass(group, pParticle, ctSG.getClassContext().getXMLInterfaceName()));
          f.addLine("new ", GroupUtil.getContentClass(group, pParticle, ctSG.getClassContext().getXMLImplementationName()), "()");
          PropertySGChain chain = ((PropertySGImpl) pParticle.getPropertySG()).getHeadOfChain();
          PropertySGChain head = new PropertySGChainImpl(chain){
            public String getXMLFieldName(PropertySG pController) throws SAXException {
              return "_value";
            }
            public String getPropertyName(PropertySG pController) throws SAXException {
              return "value";
View Full Code Here

        PropertySG pSG;
        DirectAccessible element;
        if (isMixed) {
          LocalJavaField f = pJm.newJavaField(GroupUtil.getContentClass(group, pParticle, ctSG.getClassContext().getXMLInterfaceName()));
          f.addLine("new ", GroupUtil.getContentClass(group, pParticle, ctSG.getClassContext().getXMLImplementationName()), "()");
          PropertySGChain chain = ((PropertySGImpl) pParticle.getPropertySG()).getHeadOfChain();
          PropertySGChain head = new PropertySGChainImpl(chain){
            public String getXMLFieldName(PropertySG pController) throws SAXException {
              return "_value";
            }
            public String getPropertyName(PropertySG pController) throws SAXException {
              return "value";
View Full Code Here

TOP

Related Classes of org.apache.ws.jaxme.generator.sg.PropertySGChain

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.