Package org.openmeetings.app.conference.videobeans

Examples of org.openmeetings.app.conference.videobeans.PollType


 
  public List<PollType> getPollTypeList(){
    List<PollType> pollTypesList = new LinkedList<PollType>();
    try {
     
      PollType pt = new PollType();
      pt.setPollTypeLabelid(26);
      pt.setIsNumericAnswer("no");
      pt.setPollTypesId(1);
      pollTypesList.add(pt);
     
      pt = new PollType();
      pt.setPollTypeLabelid(27);
      pt.setIsNumericAnswer("yes");
      pt.setPollTypesId(2);
      pollTypesList.add(pt);
     
    } catch (Exception err){
      log.error("[getPollTypeList]",err);
    }
View Full Code Here

TOP

Related Classes of org.openmeetings.app.conference.videobeans.PollType

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.