Examples of Sf3RenderableImpl


Examples of net.sf.jiga.xtended.impl.Sf3RenderableImpl

     * @see #VERTICAL_LAYOUT
     * @param quitMenuAction
     * @see SelectionMenuComponent(String, SelectionMenuCell[])
     */
    public SelectionMenuComponent(FieldGui gui, String name, SelectionMenuComponent parent, List<? extends SelectionMenuCell> menu, int layout) {
        super(parent, new Sf3RenderableImpl(), name);
        this.gui = gui;
        assert layout != 0 : getClass().getName() + " INVALID SELECTED LAYOUT !";
        this.layout = layout;
        this.menu = new ArrayList<SelectionMenuCell>();
        if (parent instanceof SelectionMenuComponent) {
View Full Code Here

Examples of net.sf.jiga.xtended.impl.Sf3RenderableImpl

        this.selectable.setDefaultState(selected);
        this.selectable.reset();
    }

    public SelectionMenuCell(FieldGui gui, String name, Runnable doSelection, Runnable doUnselect) {
        super(null, new Sf3RenderableImpl(), gui.rbHasKey(gui.rb, name) ? gui.rb.getString(name) : name);
        this.gui = gui;
        this.name = name;
        this.selectable = new Selectable_CELL(this, doSelection, doUnselect);
    }
View Full Code Here
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.