Examples of outputs()


Examples of oms3.ComponentAccess.outputs()

                Collection<Access> inputs = cA.inputs();
                for( Access access : inputs ) {
                    addInput(access, module);
                }

                Collection<Access> outputs = cA.outputs();
                for( Access access : outputs ) {
                    addOutput(access, module);
                }

                if (categoryStr.equals(OmsBoxConstants.GRIDGEOMETRYREADER)) {
View Full Code Here

Examples of org.apache.uima.fit.descriptor.SofaCapability.outputs()

    if (ReflectionUtil.isAnnotationPresent(componentClass, TypeCapability.class)) {
      TypeCapability annotation = ReflectionUtil.getAnnotation(componentClass, TypeCapability.class);
      String[] inputTypesOrFeatureNames = annotation.inputs();
      capability.setInputs(createTypesOrFeatures(inputTypesOrFeatureNames));
      String[] outputTypesOrFeatureNames = annotation.outputs();
      capability.setOutputs(createTypesOrFeatures(outputTypesOrFeatureNames));
    }

    return capability;
  }
View Full Code Here

Examples of org.apache.uima.fit.descriptor.TypeCapability.outputs()

    if (ReflectionUtil.isAnnotationPresent(componentClass, TypeCapability.class)) {
      TypeCapability annotation = ReflectionUtil.getAnnotation(componentClass, TypeCapability.class);
      String[] inputTypesOrFeatureNames = annotation.inputs();
      capability.setInputs(createTypesOrFeatures(inputTypesOrFeatureNames));
      String[] outputTypesOrFeatureNames = annotation.outputs();
      capability.setOutputs(createTypesOrFeatures(outputTypesOrFeatureNames));
    }

    return capability;
  }
View Full Code Here

Examples of org.data2semantics.platform.domain.CommandLineDomain.outputs()

      final String [] expectedInputs  = new String[]{"first","second"};
      final String expectedFirstDescription = "this is the first input";
      final String expectedProductDescription = "this is the product of the inputs";
      final String expectedCommandLine ="src/test/resources/commandLine/arith.bat";
     
      assertEquals(Arrays.asList(expectedOutputs), domain.outputs(SOURCE));
      assertEquals(Arrays.asList(expectedInputs), domain.inputs(SOURCE));
     
      assertEquals(expectedFirstDescription, domain.inputDescription(SOURCE, "first"));
      assertEquals(expectedProductDescription, domain.outputDescription(SOURCE, "product"));
     
View Full Code Here

Examples of org.formulacompiler.spreadsheet.SpreadsheetByNameBinder.outputs()

    // ---- bindAllByName
    if (!areAnyNamesDefined()) {
      createCellNamesFromRowTitles();
    }
    SpreadsheetByNameBinder bn = getByNameBinder();
    bn.outputs().bindAllMethodsToNamedCells();
    bn.inputs().bindAllNamedCellsToMethods();
    // ---- bindAllByName
  }

  public void failIfByNameBindingLeftNamedCellsUnbound() throws CompilerException
View Full Code Here

Examples of org.formulacompiler.spreadsheet.SpreadsheetByNameBinder.outputs()

    // ---- bindAllByNamePrefixed
    if (!areAnyNamesDefined()) {
      createCellNamesFromRowTitles();
    }
    SpreadsheetByNameBinder bn = getByNameBinder();
    bn.outputs().bindAllMethodsToPrefixedNamedCells( _outputPrefix );
    bn.inputs().bindAllPrefixedNamedCellsToMethods( _inputPrefix );
    // ---- bindAllByNamePrefixed
  }

  public void failIfByNameBindingLeftNamedCellsUnbound( String _inputPrefix, String _outputPrefix )
View Full Code Here

Examples of org.switchyard.component.bpm.annotation.AbortProcessInstance.outputs()

            } else if (ABORT_PROCESS_INSTANCE_FILTER.matches(method)) {
                operationType = BPMOperationType.ABORT_PROCESS_INSTANCE;
                AbortProcessInstance abortProcessInstanceAnnotation = method.getAnnotation(AbortProcessInstance.class);
                globalMappingAnnotations = new Global[]{};
                inputMappingAnnotations = new Input[]{};
                outputMappingAnnotations = abortProcessInstanceAnnotation.outputs();
                faultMappingAnnotations = abortProcessInstanceAnnotation.faults();
            }
            if (operationType != null) {
                ServiceOperation serviceOperation = javaService.getOperation(method.getName());
                if (serviceOperation != null) {
View Full Code Here

Examples of org.switchyard.component.bpm.annotation.SignalEvent.outputs()

                operationType = BPMOperationType.SIGNAL_EVENT;
                SignalEvent signalEventAnnotation = method.getAnnotation(SignalEvent.class);
                eventId = Strings.trimToNull(signalEventAnnotation.eventId());
                globalMappingAnnotations = signalEventAnnotation.globals();
                inputMappingAnnotations = signalEventAnnotation.inputs();
                outputMappingAnnotations = signalEventAnnotation.outputs();
                faultMappingAnnotations = signalEventAnnotation.faults();
            } else if (SIGNAL_EVENT_ALL_FILTER.matches(method)) {
                operationType = BPMOperationType.SIGNAL_EVENT_ALL;
                SignalEventAll signalEventAllAnnotation = method.getAnnotation(SignalEventAll.class);
                eventId = Strings.trimToNull(signalEventAllAnnotation.eventId());
View Full Code Here

Examples of org.switchyard.component.bpm.annotation.SignalEventAll.outputs()

                operationType = BPMOperationType.SIGNAL_EVENT_ALL;
                SignalEventAll signalEventAllAnnotation = method.getAnnotation(SignalEventAll.class);
                eventId = Strings.trimToNull(signalEventAllAnnotation.eventId());
                globalMappingAnnotations = signalEventAllAnnotation.globals();
                inputMappingAnnotations = signalEventAllAnnotation.inputs();
                outputMappingAnnotations = signalEventAllAnnotation.outputs();
                faultMappingAnnotations = signalEventAllAnnotation.faults();
            } else if (ABORT_PROCESS_INSTANCE_FILTER.matches(method)) {
                operationType = BPMOperationType.ABORT_PROCESS_INSTANCE;
                AbortProcessInstance abortProcessInstanceAnnotation = method.getAnnotation(AbortProcessInstance.class);
                globalMappingAnnotations = new Global[]{};
View Full Code Here

Examples of org.switchyard.component.bpm.annotation.StartProcess.outputs()

            if (START_PROCESS_FILTER.matches(method)) {
                operationType = BPMOperationType.START_PROCESS;
                StartProcess startProcessAnnotation = method.getAnnotation(StartProcess.class);
                globalMappingAnnotations = startProcessAnnotation.globals();
                inputMappingAnnotations = startProcessAnnotation.inputs();
                outputMappingAnnotations = startProcessAnnotation.outputs();
                faultMappingAnnotations = startProcessAnnotation.faults();
            } else if (SIGNAL_EVENT_FILTER.matches(method)) {
                operationType = BPMOperationType.SIGNAL_EVENT;
                SignalEvent signalEventAnnotation = method.getAnnotation(SignalEvent.class);
                eventId = Strings.trimToNull(signalEventAnnotation.eventId());
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.