1 16 package org.directwebremoting.extend; 17 18 import java.util.ArrayList ; 19 import java.util.List ; 20 21 27 public class Replies 28 { 29 32 public Replies(String batchId) 33 { 34 this.batchId = batchId; 35 } 36 37 41 public int getReplyCount() 42 { 43 return replies.size(); 44 } 45 46 50 public Reply getReply(int index) 51 { 52 return (Reply) replies.get(index); 53 } 54 55 59 public void addReply(Reply reply) 60 { 61 replies.add(reply); 62 } 63 64 67 public void setBatchId(String batchId) 68 { 69 this.batchId = batchId; 70 } 71 72 75 public String getBatchId() 76 { 77 return batchId; 78 } 79 80 private String batchId = null; 81 82 85 private List replies = new ArrayList (); 86 } 87 | Popular Tags |