Package org.swingml.model

Examples of org.swingml.model.ListenerModel


    /**
     * @see org.swingml.xml.Mapper#getModelToMap(Node, Object)
     */
    public Object getModelToMap(Node aNode, Object aParent, Container aContainer) {
        ExternalActionModel theModel = new ExternalActionModel();
        ListenerModel theListener = (ListenerModel) aParent;
        theListener.addAction(theModel);
        return theModel;
    }
View Full Code Here


    /**
     * @see org.swingml.xml.Mapper#getModelToMap(Node, Object)
     */
    public Object getModelToMap(Node aNode, Object aParent, Container aContainer) {
        ControllerActionModel theModel = new ControllerActionModel();
        ListenerModel theListener = (ListenerModel) aParent;
        theListener.addAction(theModel);
        return theModel;
    }
View Full Code Here

TOP

Related Classes of org.swingml.model.ListenerModel

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.