Lines Matching defs:sections
11 * and 4 message sections.
25 private List [] sections;
58 sections = new List[4];
106 sections[i] = new ArrayList(count);
110 sections[i].add(rec);
163 if (sections[section] == null)
164 sections[section] = new LinkedList();
166 sections[section].add(r);
176 if (sections[section] != null && sections[section].remove(r)) {
191 sections[section] = null;
202 return (sections[section] != null && sections[section].contains(r));
213 if (sections[i] != null && sections[i].contains(r))
226 if (sections[section] == null)
228 for (int i = 0; i < sections[section].size(); i++) {
229 Record r = (Record) sections[section].get(i);
256 List l = sections[Section.QUESTION];
273 List l = sections[Section.ADDITIONAL];
335 if (sections[section] == null)
337 List l = sections[section];
356 if (sections[section] == null)
391 if (sections[i] == null)
393 for (int j = 0; j < sections[i].size(); j++) {
394 Record rec = (Record)sections[i].get(j);
405 int n = sections[section].size();
411 Record rec = (Record)sections[section].get(i);
443 if (sections[i] == null)
602 for (int i = 0; i < sections.length; i++) {
603 if (sections[i] != null)
604 m.sections[i] = new LinkedList(sections[i]);