Package com.opengamma.engine.function.dsl

Examples of com.opengamma.engine.function.dsl.TargetSpecificationReference


    Set<ValueSpecification> valueSpecifications = new HashSet<ValueSpecification>();

    for (String name : outputsByName.keySet()) {
      StreamI<FunctionOutput> functionOutputs = outputsByName.get(name);
      for (FunctionOutput functionOutput : functionOutputs) {
        TargetSpecificationReference tsr = functionOutput.getTargetSpecificationReference();
        ComputationTargetSpecification cts = functionOutput.getComputationTargetSpecification();
        RecordingValueProperties rvps = functionOutput.getRecordingValueProperties();
        ValueProperties vps = functionOutput.getValueProperties();
        if (tsr == null && cts == null) {
          throw new IllegalArgumentException("Target specification must be provided by function DSL, but there wasn't any for input: " + name);
View Full Code Here


    Set<ValueRequirement> valueRequirements = new HashSet<ValueRequirement>();

    for (String name : inputsByName.keySet()) {
      StreamI<FunctionInput> functionInputs = inputsByName.get(name);
      for (FunctionInput functionInput : functionInputs) {
        TargetSpecificationReference tsr = functionInput.getTargetSpecificationReference();
        ComputationTargetSpecification cts = functionInput.getComputationTargetSpecification();
        RecordingValueProperties rvps = functionInput.getRecordingValueProperties();
        ValueProperties vps = functionInput.getValueProperties();
        if (tsr == null && cts == null) {
          throw new IllegalArgumentException("Target specification must be provided by function DSL, but there wasn't any for input: " + name);
View Full Code Here

    Set<ValueSpecification> valueSpecifications = new HashSet<ValueSpecification>();

    for (final String name : outputsByName.keySet()) {
      StreamI<FunctionOutput> functionOutputs = outputsByName.get(name);
      for (FunctionOutput functionOutput : functionOutputs) {
        TargetSpecificationReference tsr = functionOutput.getTargetSpecificationReference();
        ComputationTargetSpecification cts = functionOutput.getComputationTargetSpecification();
        final RecordingValueProperties rvps = functionOutput.getRecordingValueProperties();
        ValueProperties vps = functionOutput.getValueProperties();
        if (tsr == null && cts == null) {
          throw new IllegalArgumentException("Target specification must be provided by function DSL, but there wasn't any for input: " + name);
View Full Code Here

TOP

Related Classes of com.opengamma.engine.function.dsl.TargetSpecificationReference

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.