Package org.flexdock.plaf.resources

Source Code of org.flexdock.plaf.resources.ActionResourceHandler

/*
* Created on Apr 26, 2005
*/
package org.flexdock.plaf.resources;

import javax.swing.Action;

import org.flexdock.plaf.resources.action.DefaultAction;
import org.flexdock.util.Utilities;

/**
* @author Christopher Butler
*/
public class ActionResourceHandler extends ResourceHandler {

    public Object getResource(String stringValue) {
        Object obj = Utilities.createInstance(stringValue);
        if(!(obj instanceof Action))
            obj = new DefaultAction();
        return obj;
    }
}
TOP

Related Classes of org.flexdock.plaf.resources.ActionResourceHandler

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.