Package org.eclipse.wst.wsdl

Examples of org.eclipse.wst.wsdl.Part


    if (parameterOrder != null)
    {
      for (Iterator i = parameterOrder.iterator(); i.hasNext();)
      {
        // KB: We should be resolving parts based on the part names in parameterOrder.
        Part part = WSDLFactory.eINSTANCE.createPart();
        part.setName((String)i.next());
        getEParameterOrdering().add(part);
      }
    }
  }
View Full Code Here


      if (eReference == null || eReference == WSDLPackage.Literals.OPERATION__EPARAMETER_ORDERING)
      {
        // Build up a string of concatenated part names (parameterOrder) from eParameterOrdering.

        Iterator parts = getEParameterOrdering().iterator();
        Part part = null;
        String partNames = "";
        while (parts.hasNext())
        {
          part = (Part)parts.next();
          partNames = partNames + part.getName() + " ";
        }

        if ((partNames = partNames.trim()).length() != 0)
          // Update the element's attrubute
          niceSetAttribute(theElement, WSDLConstants.PARAMETER_ORDER_ATTRIBUTE, partNames);
View Full Code Here

   * <!-- end-user-doc -->
   * @generated
   */
  public void setEPart(Part newEPart)
  {
    Part oldEPart = ePart;
    ePart = newEPart;
    if (eNotificationRequired())
      eNotify(new ENotificationImpl(this, Notification.SET, MIMEPackage.MIME_MIME_XML__EPART, oldEPart, ePart));
  }
View Full Code Here

   * <!-- end-user-doc -->
   * @generated
   */
  public void setEPart(Part newEPart)
  {
    Part oldEPart = ePart;
    ePart = newEPart;
    if (eNotificationRequired())
      eNotify(new ENotificationImpl(this, Notification.SET, MIMEPackage.MIME_CONTENT__EPART, oldEPart, ePart));
  }
View Full Code Here

   * <!-- begin-user-doc -->
   * <!-- end-user-doc -->
   * @generated
   */
  public void setPart(Part newPart) {
    Part oldPart = part;
    part = newPart;
    if (eNotificationRequired())
      eNotify(new ENotificationImpl(this, Notification.SET, BPELPackage.TO__PART, oldPart, part));
  }
View Full Code Here

   * <!-- begin-user-doc -->
   * <!-- end-user-doc -->
   * @generated
   */
  public void setWsdlPart(Part newWsdlPart) {
    Part oldWsdlPart = wsdlPart;
    wsdlPart = newWsdlPart;
    if (eNotificationRequired())
      eNotify(new ENotificationImpl(this, Notification.SET, MessagepropertiesPackage.PROPERTY_ALIAS__WSDL_PART, oldWsdlPart, wsdlPart));
  }
View Full Code Here

   * <!-- end-user-doc -->
   * @customized
   */
  public Part getPartGen() {
    if (part != null && part.eIsProxy()) {
      Part oldPart = part;
      part = (Part)eResolveProxy((InternalEObject)part);
      if (part != oldPart) {
        if (eNotificationRequired())
          eNotify(new ENotificationImpl(this, Notification.RESOLVE, BPELPackage.FROM__PART, oldPart, part));
      }
View Full Code Here

   * <!-- begin-user-doc -->
   * <!-- end-user-doc -->
   * @generated
   */
  public void setPart(Part newPart) {
    Part oldPart = part;
    part = newPart;
    if (eNotificationRequired())
      eNotify(new ENotificationImpl(this, Notification.SET, BPELPackage.FROM__PART, oldPart, part));
  }
View Full Code Here

   * @param message
   * @param name
   * @return the part or null
   */
  public static Part findPart(Message message, String name) {
    Part result = null;
        if (message != null) {
            result = (Part) message.getPart(name);
        }
      return result;
  }
View Full Code Here

          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();
          fireAddMappingEvent(new JbprocessElementMapping(e,part.getElement()));
        }
        if (wsdlDocLitWrapResultMap.get(e) != null){
          XSDElementDeclaration elem = wsdlDocLitWrapResultMap.get(e);
          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){
            elem.updateElement();
View Full Code Here

TOP

Related Classes of org.eclipse.wst.wsdl.Part

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.