Package org.xmatthew.spy2servers.core

Examples of org.xmatthew.spy2servers.core.Component


     * @see org.xmatthew.spy2servers.jmx.ComponentViewMBean#viewComponentProperties()
     */
    public String getComponentProperties() {
        if (getComponent() != null) {
            try {
                Component component = getComponent();
                Map properties = PropertyUtils.describe(component);
                if (properties == null) {
                    return null;
                }
                Iterator iter = properties.entrySet().iterator();
View Full Code Here

TOP

Related Classes of org.xmatthew.spy2servers.core.Component

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.