Examples of EvaluatorCreationServiceImpl


Examples of gov.nasa.arc.mct.evaluator.component.EvaluatorCreationServiceImpl

     * Creates a new component based on the collection of source components.
     * @param sourceComponents the collection of components.
     * @return newly created abstract component.
     */
    AbstractComponent createNewEnum(Collection<AbstractComponent> sourceComponents) {
      EvaluatorCreationServiceImpl e = new EvaluatorCreationServiceImpl();
      AbstractComponent ac = e.createEvaluator(EnumEvaluator.LANGUAGE_STRING, "", null);
      ac.addDelegateComponents(sourceComponents);
      return ac;
    }
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.