Package org.fusesource.ide.jmx.camel.navigator.stats.model

Examples of org.fusesource.ide.jmx.camel.navigator.stats.model.HasTotalStatistics


  protected IInvocationStatistics getTotalStatistics(Object element) {
    if (element instanceof IInvocationStatistics) {
      return (IInvocationStatistics) element;
    }
    if (element instanceof HasTotalStatistics) {
      HasTotalStatistics node = (HasTotalStatistics) element;
      IInvocationStatistics answer = node.getTotalStatistics();
      if (answer != null) {
        return answer;
      }
    }
    if (element instanceof ProcessorNodeSupport) {
      ProcessorNodeSupport node = (ProcessorNodeSupport) element;
      return node.getTotalStatistics();
    }
    return null;
  }
View Full Code Here

TOP

Related Classes of org.fusesource.ide.jmx.camel.navigator.stats.model.HasTotalStatistics

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.