Package org.fusesource.ide.jmx.commons.messages

Examples of org.fusesource.ide.jmx.commons.messages.HasNodeStatisticsContainer


  protected void updateselection(Object firstSelection) {
    if (firstSelection != null) {
      nodeStatisticsContainer = null;
      if (firstSelection instanceof HasNodeStatisticsContainer) {
        HasNodeStatisticsContainer hasNodeStatisticsContainer = (HasNodeStatisticsContainer) firstSelection;
        nodeStatisticsContainer = hasNodeStatisticsContainer.getNodeStatisticsContainer();
      } else if (firstSelection instanceof NodeStatisticsContainer) {
        nodeStatisticsContainer = (NodeStatisticsContainer) firstSelection;
      }
    } else {
      this.selectedNode = null;
View Full Code Here

TOP

Related Classes of org.fusesource.ide.jmx.commons.messages.HasNodeStatisticsContainer

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.