Examples of Input


Examples of edu.neu.ccs.task.dialogue.Input

        scripts.add(script(nextE, er, null));
      else
        skipElement(er);
    }
   
    return new Input(texts, bindings, scripts);
  }
View Full Code Here

Examples of eu.admire.dispel.parameters.Input

  /**
   * @generated
   */
  public static List<DispelLinkDescriptor> getInput_3006IncomingLinks(
      View view) {
    Input modelElement = (Input) view.getElement();
    Map<EObject, Collection<EStructuralFeature.Setting>> crossReferences = EcoreUtil.CrossReferencer
        .find(view.eResource().getResourceSet().getResources());
    LinkedList<DispelLinkDescriptor> result = new LinkedList<DispelLinkDescriptor>();
    result.addAll(getIncomingTypeModelFacetLinks_ConnectionExpression_4001(
        modelElement, crossReferences));
View Full Code Here

Examples of gannuNLP.data.Input

      ArrayList<File> files=Util.getAllSGFFiles(s);
     
      for(File f:files)
      {
        System.out.println(String.valueOf(i)+"/"+String.valueOf(files.size()));
        this.documents.add(new Input(f,null,dict,noTag,false));
        i++;
     
      this.documents.trimToSize();       
      System.out.println("Saving "+p.getName()+"...");
      Util.writeObject(p, this.getDocuments());       
View Full Code Here

Examples of io.crate.operation.Input

                countImpl.info(),
                Arrays.<Symbol>asList(new InputColumn(0)),
                Aggregation.Step.PARTIAL,
                Aggregation.Step.FINAL
        );
        Input dummyInput = new Input() {
            CountAggregation.CountAggState state = new CountAggregation.CountAggState() {{ value = 10L; }};


            @Override
            public Object value() {
View Full Code Here

Examples of javax.wsdl.Input

                    while (ite2.hasNext()) {
                        Operation operation = (Operation)ite2.next();
                        if (operation.getName().equals(opName)) {

                            operationMap.put(new QName(tns, opName), operation);
                            Input input = operation.getInput();
                            if (input != null && input.getMessage() != null
                                && !msgPartsMap.containsKey(input.getMessage().getQName())) {
                                Node errNode = ErrNodeLocator.getNode(document,
                                                                      WSDLConstants.QNAME_OPERATION,
                                                                      operation.getName(), input.getName());
                                schemaWSDLValidator.addError(errNode, " input : " + input.getName()
                                                                      + " reference is not defined");
                                isValid = false;
                            }

                            Output output = operation.getOutput();
View Full Code Here

Examples of javax.wsdl.Input

        }
        if (WSDLConstants.RPC.equalsIgnoreCase((String)env.get(ToolConstants.CFG_STYLE))) {
            Iterator it = portType.getOperations().iterator();
            while (it.hasNext()) {
                Operation op = (Operation)it.next();
                Input input = op.getInput();
                if (input != null && input.getMessage() != null) {
                    Iterator itParts = input.getMessage().getParts().values().iterator();
                    while (itParts.hasNext()) {
                        Part part = (Part)itParts.next();
                        if (part.getTypeName() == null || "".equals(part.getTypeName().toString())) {
                            Message msg = new Message("RPC_PART_ILLEGAL", LOG, new Object[] {part.getName()});
                            throw new ToolException(msg);
View Full Code Here

Examples of javax.wsdl.Input

  for(Iterator it2 = pt.getOperations().iterator(); it2.hasNext();) {
    Operation op = (Operation)it2.next();

    out.println(" " + op.getName());
   
    Input  in   = op.getInput();
    Output msg_out = op.getOutput();
   
    out.println("  in:  "); //  + in.getMessage().getQName().getLocalPart());
    if(in != null) {
      printMessage(in.getMessage(), typeMap, 3, out);
    } else {
      System.out.println("    null input");
    }
    out.println("  out: "); //  + out.getMessage().getQName().getLocalPart());
    if(msg_out != null) {
View Full Code Here

Examples of javax.wsdl.Input

    private BindingOperation buildBindingOperation(Definition definition, ExtensionRegistry extensionRegistry) throws WSDLException {
        Operation operation = definition.createOperation();
        operation.setName(operationName);
        operation.setStyle(OperationType.REQUEST_RESPONSE);
        Input input = definition.createInput();
        Message inputMessage = definition.createMessage();
        Part inputPart = definition.createPart();
        inputPart.setName("string");
        inputPart.setTypeName(new QName("http://www.w3.org/2001/XMLSchema", "string"));
        inputMessage.addPart(inputPart);
        operation.setInput(input);
        input.setMessage(inputMessage);
        Output output = definition.createOutput();
        Message outputMessage = definition.createMessage();
        operation.setOutput(output);
        output.setMessage(outputMessage);
        BindingOperation bindingOperation = definition.createBindingOperation();
View Full Code Here

Examples of javax.wsdl.Input

    private void processWrappedInputParams(
            WSDLToCorbaBinding wsdlToCorbaBinding, Operation operation,
            List<XmlSchema> xmlSchemaList, List<ParamType> inputs)
        throws Exception {
        Input input = operation.getInput();

        if (input != null) {
            Message msg = input.getMessage();
            Iterator i = msg.getOrderedParts(null).iterator();
            while (i.hasNext()) {
                Part part = (Part) i.next();
                XmlSchemaType schemaType = null;
                schemaType = lookUpType(part, xmlSchemaList);
View Full Code Here

Examples of javax.wsdl.Input

    private void processInputParams(WSDLToCorbaBinding wsdlToCorbaBinding,
            Operation operation, List<XmlSchema> xmlSchemaList,
            List<ParamType> inputs) throws Exception {

        Input input = operation.getInput();

        if (input != null) {
            Message msg = input.getMessage();
            Iterator i = msg.getOrderedParts(null).iterator();
            while (i.hasNext()) {
                Part part = (Part) i.next();
                XmlSchemaType schemaType = null;
                schemaType = lookUpType(part, xmlSchemaList);
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.