Package org.xrace.view.formcomponents

Examples of org.xrace.view.formcomponents.BooleanOption


    this.add(dfDtFin);

    final ChoiceRenderer choiceRenderer = new ChoiceRenderer("key", "value");
    List<BooleanOption> options = new ArrayList<BooleanOption>();

    options.add(new BooleanOption("Traité", true));
    options.add(new BooleanOption("Non traité", false));

    final DropDownChoice dropDownChoice = new DropDownChoice(
        "searchByTraite", new PropertyModel(this, "traite"), options,
        choiceRenderer);
    dropDownChoice.setRequired(true);
View Full Code Here

TOP

Related Classes of org.xrace.view.formcomponents.BooleanOption

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.