Package com.opengamma.integration.tool.enginedebugger

Examples of com.opengamma.integration.tool.enginedebugger.ResolutionFailureChildNodeCreatingVisitor


  public UnsatisfiedResolutionFailuresNode(Object parent, Set<ResolutionFailure> failures) {
    _parent = parent;
    _failures = new ArrayList<ResolutionFailure>(failures);
    _expandedFailures = new ArrayList<Collection<Object>>();
    for (ResolutionFailure failure : _failures) {
      _expandedFailures.add(failure.accept(new ResolutionFailureChildNodeCreatingVisitor((ResolutionFailureImpl) failure)));
    }
  }
View Full Code Here

TOP

Related Classes of com.opengamma.integration.tool.enginedebugger.ResolutionFailureChildNodeCreatingVisitor

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.