()
| 49 | } |
| 50 | |
| 51 | public void generateList() { |
| 52 | int index = 0; |
| 53 | JabberDataBlock list0 = listBlock(); |
| 54 | |
| 55 | for (Enumeration e = rules.elements(); e.hasMoreElements();) { |
| 56 | PrivacyItem item = (PrivacyItem) e.nextElement(); |
| 57 | item.order = index++; |
| 58 | list0.addChild( item.constructBlock() ); |
| 59 | } |
| 60 | |
| 61 | privacyListRq(true, list0, "storelst"); |
| 62 | } |
| 63 | |
| 64 | private JabberDataBlock listBlock() { |
| 65 | JabberDataBlock list0=new JabberDataBlock("list"); |
no test coverage detected