Package jriaffe.bind

Examples of jriaffe.bind.Binder


* Convenience class that "binds" a panel using the jriaffe bind framework. Some panels are nested inside the main
* panel and jriaffe does not handle binding them.
*/
public class BindUtility {
    public static Binder bindPanel(JPanel panel) {
        Binder aBinder = new Binder();
        Binder.addBindMethodToClass(panel.getClass());
        aBinder.setPanel(panel);
        return aBinder;
    }
View Full Code Here

TOP

Related Classes of jriaffe.bind.Binder

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.