Home | History | Annotate | Download | only in muc

Lines Matching defs:maxChars

36  *  <li>maxchars -> total number of characters to receive in the history.
44 * Note: Setting maxchars to 0 indicates that the user requests to receive no history.
50 private int maxChars = -1;
61 return maxChars;
98 * @param maxChars the total number of characters to receive in the history.
100 public void setMaxChars(int maxChars) {
101 this.maxChars = maxChars;
142 return maxChars > -1 || maxStanzas > -1 || seconds > -1 || since != null;
159 if (maxChars > -1) {
160 mucHistory.setMaxChars(maxChars);