Package org.flexdock.plaf.resources.action

Examples of org.flexdock.plaf.resources.action.DefaultAction


public class ActionResourceHandler extends ResourceHandler {

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

TOP

Related Classes of org.flexdock.plaf.resources.action.DefaultAction

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.