Examples of FunctionConfigurationDefinitionAggregator


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
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.