Package com.sun.enterprise.tools.admingui.tree

Examples of com.sun.enterprise.tools.admingui.tree.FilterTreeEvent


     *  <p> This handler filters out all the system apps from the list of objName available
     *      through the event object, based on the object-type attribute.
     */
    @Handler( id="filterSystemApps")
    public static Object filterSystemApps(HandlerContext context) {
        FilterTreeEvent event = (FilterTreeEvent) context.getEventObject();
        Object[] obj = event.getChildObjects();
        ArrayList result = new ArrayList();
       
        if(obj != null && obj.length > 0){
            for (int i=0; i<obj.length; i++){
                ObjectName objName = (ObjectName)obj[i];
View Full Code Here

TOP

Related Classes of com.sun.enterprise.tools.admingui.tree.FilterTreeEvent

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.