Package gov.nasa.arc.mct.services.component

Examples of gov.nasa.arc.mct.services.component.ComponentTypeInfo


  private final Collection<PolicyInfo> policies = new ArrayList<PolicyInfo>();
   
  private static final ImageIcon VIEW_ICON = new ImageIcon(ExpressionsViewManifestation.class.getResource("/icons/mct_icon_menu_settings.png"));
 
  public EvaluatorComponentProvider() {
    infos = Arrays.asList(new ComponentTypeInfo(
        bundle.getString("display_name")
        bundle.getString("description"),
        EvaluatorComponent.class));
    policies.add(new PolicyInfo(PolicyInfo.CategoryType.FILTER_VIEW_ROLE.getKey(), EvaluatorViewPolicy.class));
    policies.add(new PolicyInfo(PolicyInfo.CategoryType.FILTER_VIEW_ROLE.getKey(), EnumeratorViewPolicy.class));
View Full Code Here


  private static final ResourceBundle bundle = ResourceBundle.getBundle("Limits");
  private final ComponentTypeInfo componentTypeInfo;
 
  public LimitLineComponentProvider() {

    componentTypeInfo = new ComponentTypeInfo(
        bundle.getString("display_name"),
        bundle.getString("description"),
        LimitLineComponent.class);
  }
View Full Code Here

     * new ComponentTypeInfo(bundle
     * .getString("EventsCollectionComponentName"), bundle
     * .getString("EventsCollectionComponentDescription"),
     * EventsCollection.class, false),
     */
    new ComponentTypeInfo(bundle.getString("display_name"), bundle
        .getString("description"), ImportExportComponent.class, false));

    assert componentTypes != null;
  }
View Full Code Here

TOP

Related Classes of gov.nasa.arc.mct.services.component.ComponentTypeInfo

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.