Package com.structis.fichesst.shared.dto

Examples of com.structis.fichesst.shared.dto.SimpleFigDto


    return "<div class='input-cell-border'>" + (value == null ? " " : value.toString()) + "</div>";
  }

  protected static List<SimpleFigDto> buildNonOuiOptions() {
    List<SimpleFigDto> results = new ArrayList<SimpleFigDto>();
    SimpleFigDto option1 = new SimpleFigDto();
    option1.setId(1);
    option1.setLabel(messages.yes());// Oui
    option1.setValue(true);
    results.add(option1);

    SimpleFigDto option2 = new SimpleFigDto();
    option2.setId(0);
    option2.setLabel(messages.no());// Non
    option2.setValue(false);
    results.add(option2);
    return results;
  }
View Full Code Here

TOP

Related Classes of com.structis.fichesst.shared.dto.SimpleFigDto

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.