Package org.osmorc.frameworkintegration

Examples of org.osmorc.frameworkintegration.FrameworkIntegratorRegistry


  }

  @NotNull
  public List<FrameworkInstanceDefinition> getActiveFrameworkInstanceDefinitions() {
    if (myActiveInstances == null) {
      final FrameworkIntegratorRegistry registry = FrameworkIntegratorRegistry.getInstance();
      myActiveInstances = ContainerUtil.filter(myInstances, new Condition<FrameworkInstanceDefinition>() {
        @Override
        public boolean value(FrameworkInstanceDefinition definition) {
          return registry.findIntegratorByInstanceDefinition(definition) != null;
        }
      });
    }
    return myActiveInstances;
  }
View Full Code Here

TOP

Related Classes of org.osmorc.frameworkintegration.FrameworkIntegratorRegistry

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.