Examples of HelpType


Examples of org.rhq.enterprise.server.xmlschema.generated.serverplugin.HelpType

        assert descriptor.getDisplayName().equals("generic display");
        assert descriptor.getDescription().equals("generic description");
        assert descriptor.getPackage().equals("generic.package");
        assert descriptor.isDisabledOnDiscovery() == false; // the default

        HelpType help = descriptor.getHelp();
        assert help != null;
        List<Object> content = help.getContent();
        assert content != null;
        String helpStr = content.get(0).toString();
        assert helpStr.equals("help text with <em>XML</em>");

        ServerPluginComponentType pluginComponent = descriptor.getPluginComponent();
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. 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.