com.purej.vminspect.html.AbstractMBeansView Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of purej-vminspect Show documentation
Show all versions of purej-vminspect Show documentation
An easy to use, feature-rich, JMX-based and embeddable Java VM monitoring tool with a web-based user-interface
// Copyright (c), 2013, adopus consulting GmbH Switzerland, all rights reserved.
package com.purej.vminspect.html;
import java.io.IOException;
import java.util.List;
import javax.management.ObjectName;
import com.purej.vminspect.data.MBeanUtils;
/**
* Abstract class for the MBeans views.
*
* @author Stefan Mueller
*/
abstract class AbstractMBeansView extends AbstractHtmlView {
/**
* Creates a new instance of this view.
*/
public AbstractMBeansView(StringBuilder output) {
super(output);
}
@SuppressWarnings("unchecked")
protected void writeMBeanValue(Object object, boolean tryShowMBeanLinks) throws IOException {
if (object instanceof List) {
List
© 2015 - 2025 Weber Informatics LLC | Privacy Policy