Examples of updateElement()


Examples of org.eclipse.wst.wsdl.Operation.updateElement()

          variable.updateElement();
          fireAddMappingEvent(new JbprocessElementMapping(e,variable.getElement()));
        }
        if (methodOperationMap.get(e) != null){
          Operation operation = methodOperationMap.get(e);
          operation.updateElement();
          fireAddMappingEvent(new JbprocessElementMapping(e,operation.getElement()));
        }
        if (typeXSDComplexTypeMap.get(e) != null){
          XSDComplexTypeDefinition complexType = typeXSDComplexTypeMap.get(e);
          complexType.updateElement();
View Full Code Here

Examples of org.eclipse.wst.wsdl.Part.updateElement()

          complexType.updateElement();
          fireAddMappingEvent(new JbprocessElementMapping(e,complexType.getElement()));
        }
        if (wsdlRpcLitResultMap.get(e) != null){
          Part part = wsdlRpcLitResultMap.get(e);
          part.updateElement();
          fireAddMappingEvent(new JbprocessElementMapping(e,part.getElement()));
        }
        if (wsdlDocLitWrapResultMap.get(e) != null){
          XSDElementDeclaration elem = wsdlDocLitWrapResultMap.get(e);
          elem.updateElement();
View Full Code Here

Examples of org.eclipse.wst.wsdl.Part.updateElement()

          elem.updateElement();
          fireAddMappingEvent(new JbprocessElementMapping(e,elem.getElement()));
        }
        if (wsdlRpcLitParamMap.get(e) != null){
          Part part = wsdlRpcLitParamMap.get(e);
          part.updateElement();
          fireAddMappingEvent(new JbprocessElementMapping(e,part.getElement()));
        }
        if (wsdlDocLitParamElemMap.get(e) != null){
          List<XSDElementDeclaration> elems = wsdlDocLitParamElemMap.get(e);
          for (XSDElementDeclaration elem : elems){
View Full Code Here

Examples of org.eclipse.wst.wsdl.PortType.updateElement()

          process.updateElement();
          fireAddMappingEvent(new JbprocessBpelProcessMapping(e,process));
        }
        if (typePortTypeMap.get(e) != null){
          PortType portType = typePortTypeMap.get(e);
          portType.updateElement();
          fireAddMappingEvent(new JbprocessElementMapping(e,portType.getDocumentationElement()));
        }
        if (methodElementDeclMap.get(e) != null){
          XSDElementDeclaration elem = methodElementDeclMap.get(e);
          elem.updateElement();
View Full Code Here

Examples of org.eclipse.xsd.XSDAttributeDeclaration.updateElement()

        XSDAttributeDeclaration attribute  = xsdFactory.createXSDAttributeDeclaration();
        attribute.setName(aProperty.getName());   
        XSDAttributeUse orderDateAttributeUse = xsdFactory.createXSDAttributeUse();
        orderDateAttributeUse.setContent(attribute);
        complexType.getAttributeContents().add(orderDateAttributeUse);
        attribute.updateElement();
       
        if ( aProperty.getType().isDataType() )
        {
            attribute.setTypeDefinition((XSDSimpleTypeDefinition)typeTable.getXSDTypeDef(attributeSchemaType.getNamespaceURI(),
                                            attributeSchemaType.getLocalPart()));
View Full Code Here

Examples of org.eclipse.xsd.XSDAttributeDeclaration.updateElement()

        XSDAttributeDeclaration attribute  = xsdFactory.createXSDAttributeDeclaration();
        attribute.setName(aProperty.getName());   
        XSDAttributeUse orderDateAttributeUse = xsdFactory.createXSDAttributeUse();
        orderDateAttributeUse.setContent(attribute);
        complexType.getAttributeContents().add(orderDateAttributeUse);
        attribute.updateElement();
       
        if ( aProperty.getType().isDataType() )
        {
            attribute.setTypeDefinition((XSDSimpleTypeDefinition)typeTable.getXSDTypeDef(attributeSchemaType.getNamespaceURI(),
                                            attributeSchemaType.getLocalPart()));
View Full Code Here

Examples of org.eclipse.xsd.XSDComplexTypeDefinition.updateElement()

            complexType.setAbstract(dataType.isAbstract());
           
            xmlSchema.getTypeDefinitions().add(complexType);
            xmlSchema.getContents().add(complexType);
           
            complexType.updateElement();
           
            addAnnotations(complexType, dataType);
           
            handleBaseExtn(xmlSchema, dataType, complexType);
            handleSDOSequence(dataType, complexType);
View Full Code Here

Examples of org.eclipse.xsd.XSDComplexTypeDefinition.updateElement()

            complexType.setAbstract(dataType.isAbstract());
           
            xmlSchema.getTypeDefinitions().add(complexType);
            xmlSchema.getContents().add(complexType);
           
            complexType.updateElement();
           
            addAnnotations(complexType, dataType);
           
            handleBaseExtn(xmlSchema, dataType, complexType);
            handleSDOSequence(dataType, complexType);
View Full Code Here

Examples of org.eclipse.xsd.XSDComplexTypeDefinition.updateElement()

          operation.updateElement();
          fireAddMappingEvent(new JbprocessElementMapping(e,operation.getElement()));
        }
        if (typeXSDComplexTypeMap.get(e) != null){
          XSDComplexTypeDefinition complexType = typeXSDComplexTypeMap.get(e);
          complexType.updateElement();
          fireAddMappingEvent(new JbprocessElementMapping(e,complexType.getElement()));
        }
        if (wsdlRpcLitResultMap.get(e) != null){
          Part part = wsdlRpcLitResultMap.get(e);
          part.updateElement();
View Full Code Here

Examples of org.eclipse.xsd.XSDElementDeclaration.updateElement()

        aParticle.setContent(element);
       
        ((XSDModelGroup)((XSDParticle)complexType.getContent()).getContent()).
        getContents().add(aParticle);
       
        element.updateElement();

        if ( aProperty.isMany() )
        {
            aParticle.setMaxOccurs(-1);
            aParticle.setMinOccurs(0);
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. 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.