(String name, int type)
| 156 | //#endif |
| 157 | |
| 158 | public final Group addGroup(String name, int type) { |
| 159 | Group ng = new Group(name); |
| 160 | ng.type = type; |
| 161 | return addGroup(ng); |
| 162 | } |
| 163 | |
| 164 | public Group addGroup(Group ng) { |
| 165 | groups.addElement(ng); |
no test coverage detected