Examples of Part


Examples of org.apache.ode.bpel.rtrep.v1.OMessageVarType.Part

        // Check that each part contains what we expect.
        for (String pName : partNames) {
            QName partName = new QName(null, pName);
            Element msgPart = DOMUtils.findChildByName(msgEl, partName);
            Part part = vartype.parts.get(pName);
            if (part == null) {
                String errmsg = "Inconsistent WSDL, part " + pName + " not found in message type " + vartype.messageType;
                __log.fatal(errmsg);
                throw new InvalidProcessException(errmsg);
            }
View Full Code Here

Examples of org.apache.ode.bpel.rtrep.v2.OMessageVarType.Part

        if (type instanceof OConstantVarType) {
          typeQName = new QName(Namespaces.XML_SCHEMA, "string", "xs");
        } else if (type instanceof OElementVarType) {
          typeQName = ((OElementVarType) type).elementType;
        } else if (type instanceof OMessageVarType) {
          Part part = ((OMessageVarType) type).parts.get(getVariablePartName(variableName));
          if (part != null) {
              typeQName = getTypeQName(variableName, part.type);
          }
        } else if (type instanceof OXsdTypeVarType) {
          typeQName = ((OXsdTypeVarType) type).xsdType;
View Full Code Here

Examples of org.apache.openjpa.persistence.common.apps.Part

        String size = "L";
        shirt.setSzeId(size);
       
        int pid = (int) System.currentTimeMillis();
        for (int i = 0; i < nPart; i++) {
          Part part = new Part();
          part.setPartName("Part");
          part.getId().setPartNumber(pid++);
          part.setShirt(shirt);
          shirt.getParts().add(part);
        }
        em.persist(shirt);
        tx.commit();
        em.close();
View Full Code Here

Examples of org.apache.tuscany.model.assembly.Part

    }

    public ConfiguredService getConfiguredService(ServiceURI address) {
        String partName = address.getPartName();
        String serviceName = address.getServiceName();
        Part part = getPart(partName);
        if (part instanceof Component) {
            Component<?> component = (Component<?>) part;
            if (serviceName != null) {
                return component.getConfiguredService(serviceName);
            } else {
View Full Code Here

Examples of org.asynchttpclient.multipart.Part

    public void asyncDoPostMultiPartTest() throws Exception {
        AsyncHttpClient client = getAsyncHttpClient(null);
        try {
            final CountDownLatch l = new CountDownLatch(1);

            Part p = new StringPart("foo", "bar");

            client.preparePost(getTargetUrl()).addBodyPart(p).execute(new AsyncCompletionHandlerAdapter() {

                @Override
                public Response onCompleted(Response response) throws Exception {
View Full Code Here

Examples of org.docx4j.openpackaging.parts.Part

   
    // fonts in headers, footers?
    RelationshipsPart rp = this.getRelationshipsPart();
    if (rp!=null) {
      for ( Relationship r : rp.getRelationships().getRelationship() ) {
        Part part = rp.getPart(r);
        if ( part instanceof FooterPart ) {
         
          Ftr ftr = ((FooterPart)part).getJaxbElement();
          finder.walkJAXBElements(ftr);
         
View Full Code Here

Examples of org.eclipse.wst.wsdl.Part

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

Examples of org.eclipse.xtext.xdoc.xdoc.Part

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

Examples of org.emftrace.ui.editors.builders.parts.Part

            switch (notification.getEventType()) {
            case Notification.REMOVE: {
              FTEntry elementToRemove = (FTEntry) notification
                  .getOldValue();
              Part partToRemove = partMap.get(elementToRemove);
              if (partToRemove != null) {
                partToRemove.dispose();
              }
              partMap.remove(elementToRemove);

              ModelElementChangeListener addRemoveListener = entriesAddRemoveListeners
                  .get(elementToRemove);
View Full Code Here

Examples of org.gephi.partition.api.Part

            }
            return false;
        }

        public boolean evaluate(Graph graph, Node node) {
            Part p = partition.getPart(node);
            if (p != null) {
                int partCount = p.getObjects().length;
                return range.isInRange(partCount);
            }
            return false;
        }
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.