Package com.opengamma.engine.function.config

Examples of com.opengamma.engine.function.config.FunctionConfigurationDefinitionAggregator


  private String _functionDefinitionName;
 
  //-------------------------------------------------------------------------
  @Override
  protected FunctionConfigurationSource initSource() {
    FunctionConfigurationDefinitionAggregator definitionAggregator = new FunctionConfigurationDefinitionAggregator(new MasterConfigSource(getConfigMaster()));
    List<FunctionConfigurationSource> underlying = Lists.newArrayList(definitionAggregator.aggregate(_functionDefinitionName));
    underlying.addAll(curveAndSurfaceSources());
   
    final FunctionConfigurationSource[] array = underlying.toArray(new FunctionConfigurationSource[underlying.size()]);
    return CombiningFunctionConfigurationSource.of(array);
  }
View Full Code Here

TOP

Related Classes of com.opengamma.engine.function.config.FunctionConfigurationDefinitionAggregator

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.