Package com.opengamma.engine.cache

Examples of com.opengamma.engine.cache.AbstractIdentifierMap


      valueSpec[i] = new ValueSpecification("value" + i, ComputationTargetSpecification.of(UniqueId.of("scheme", "fibble")),
          ValueProperties.with(ValuePropertyNames.FUNCTION, "mockFunctionId").get());
      realIdentifiers.put (valueSpec[i], (long)i);
    }
   
    IdentifierMap underlying = new AbstractIdentifierMap() {
     
      @Override
      public long getIdentifier(ValueSpecification spec) {
        if (shouldFail.get()) {
          AssertJUnit.fail("Should not have called underlying.");
View Full Code Here

TOP

Related Classes of com.opengamma.engine.cache.AbstractIdentifierMap

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.