1 11 package org.jboss.portlet.forums.impl; 12 13 import java.io.Serializable ; 14 import java.util.ArrayList ; 15 import java.util.LinkedList ; 16 17 import org.jboss.portlet.forums.model.Poll; 18 19 26 public class PollImpl 27 implements Serializable , 28 Poll 29 { 30 33 public PollImpl() 34 { 35 } 36 37 private Integer id; 38 39 44 public Integer getID() 45 { 46 return id; 47 } 48 49 private void setID(Integer id) 50 { 51 this.id = id; 52 } 53 54 57 public void setTitle(String string) 58 { 59 } 61 62 65 public void setLength(int i) 66 { 67 } 69 70 73 public void setOptions(LinkedList list) 74 { 75 } 77 78 81 public ArrayList getOptions() 82 { 83 return null; 85 } 86 87 90 public String getTitle() 91 { 92 return null; 94 } 95 96 99 public int getLength() 100 { 101 return 0; 103 } 104 } | Popular Tags |