Package gov.nasa.arc.mct.limits

Examples of gov.nasa.arc.mct.limits.LimitLineComponent


      } else {
        // keep map of active limit Line subscriptions, and the component's limit line attributes
        AbstractComponent component = registry.get().getComponent(LimitDataProvider.getID(topicID));
        try {
          assert component != null : "Limit Object not found: "+ topicID;
          LimitLineComponent comp = LimitLineComponent.class.cast(component);
         
          String value = comp.getModel().getValue();
          comp.setDataProvider(dataProvider.get());
               
          if (dataProvider.get() == null) {
            throw new Exception("Null data provider");
          }
          LimitDataProvider ldp = (LimitDataProvider)dataProvider.get();
View Full Code Here

TOP

Related Classes of gov.nasa.arc.mct.limits.LimitLineComponent

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.