Package org.wicketstuff.jmx.markup.html.tree.detail

Examples of org.wicketstuff.jmx.markup.html.tree.detail.OperationDetailPanel


          panel = new AttributeDetailPanel(detailPanel.getId(), jmxNode
              .getJmxMBeanWrapper(), (MBeanAttributeInfo)object);
        }
        else if (object instanceof MBeanOperationInfo)
        {
          panel = new OperationDetailPanel(detailPanel.getId(), jmxNode
              .getJmxMBeanWrapper(), (MBeanOperationInfo)object);
        }
        else if (Objects.isEqual("attributes", object))
        {
          // DetailPanel.forAttributesOverview
View Full Code Here

TOP

Related Classes of org.wicketstuff.jmx.markup.html.tree.detail.OperationDetailPanel

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.