Package org.auraframework.components.ui

Examples of org.auraframework.components.ui.InputOption


    @AuraEnabled
    public ArrayList<InputOption> getNoOptionsSel() {
        // String label, String name, boolean selected, String value
        return Lists.newArrayList(
                new InputOption("Tiger", "Tiger", false, "Tiger"),
                new InputOption("Lion", "Lion", false, "Lion"),
                new InputOption("Bear", "Bear", false, "Bear")
                );
    }
View Full Code Here


    }

    @AuraEnabled
    public ArrayList<InputOption> getSecondOptionSel() {
        return Lists.newArrayList(
                new InputOption("Tiger", "Tiger", false, "Tiger"),
                new InputOption("Lion", "Lion", true, "Lion"),
                new InputOption("Bear", "Bear", false, "Bear")
                );
    }
View Full Code Here

    }

    @AuraEnabled
    public ArrayList<InputOption> getNoOptionsSelWithNone() {
        return Lists.newArrayList(
                new InputOption("None", "None", false, ""),
                new InputOption("Tiger", "Tiger", false, "Tiger"),
                new InputOption("Lion", "Lion", false, "Lion"),
                new InputOption("Bear", "Bear", false, "Bear")
                );
    }
View Full Code Here

    }

    @AuraEnabled
    public ArrayList<InputOption> getThirdOptionSelWithNone() {
        return Lists.newArrayList(
                new InputOption("None", "None", false, ""),
                new InputOption("Tiger", "Tiger", false, "Tiger"),
                new InputOption("Lion", "Lion", true, "Lion"),
                new InputOption("Bear", "Bear", false, "Bear")
                );
    }
View Full Code Here

    }

    @AuraEnabled
    public ArrayList<InputOption> getThirdOptionSel() {
        return Lists.newArrayList(
                new InputOption("Tiger", "Tiger", false, "Tiger"),
                new InputOption("Lion", "Lion", false, "Lion"),
                new InputOption("Bear", "Bear", true, "Bear")
                );
    }
View Full Code Here

TOP

Related Classes of org.auraframework.components.ui.InputOption

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.