Package com.opengamma.financial.analytics

Examples of com.opengamma.financial.analytics.AnalyticsFunctions


  }

  //-------------------------------------------------------------------------
  @Override
  protected void doRun() {
    AnalyticsFunctions analyticsFunctions = new AnalyticsFunctions() {
      @Override
      protected FunctionConfigurationSource modelFunctionConfiguration() {
        ModelFunctions modelFunctions = new ModelFunctions() {
          @Override
          protected FunctionConfigurationSource equityFunctionConfiguration() {
            EquityFunctions equityFunctions = new EquityFunctions() {
              @Override
              protected FunctionConfigurationSource optionFunctionConfiguration() {
                return null;
              }
            };
            return equityFunctions.getObjectCreating();
          }
        };
        return modelFunctions.getObjectCreating();
      }
    };
    storeFunctionDefinition(AGGREGATION, AggregationFunctions.instance());
    storeFunctionDefinition(ANALYTICS, analyticsFunctions.getObjectCreating());
    storeFunctionDefinition(CURRENCY, CurrencyFunctions.instance());
    storeFunctionDefinition(PROPERTY, PropertyFunctions.instance());
    storeFunctionDefinition(VALUE, ValueFunctions.instance());
    storeFunctionDefinition(VIEW, ViewFunctions.instance());
View Full Code Here

TOP

Related Classes of com.opengamma.financial.analytics.AnalyticsFunctions

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.