Home | History | Annotate | Download | only in packet

Lines Matching defs:question

121         private String question;

123 public ChatInfo(String sessionID, String userID, Date date, String email, String username, String question) {
129 this.question = question;
182 * Returns the question the user asked.
184 * @return the question the user asked, if any.
187 return question;
209 if (question != null) {
210 buf.append(" question=\"").append(question).append("\"");
261 String question = parser.getAttributeValue("", "question");
263 return new ChatInfo(sessionID, userID, date, email, username, question);