( Class clas )
| 179 | } |
| 180 | |
| 181 | void setConslist( Class clas ) { |
| 182 | if ( clas == null ) { |
| 183 | conslist.setListData( new Object [] { } ); |
| 184 | return; |
| 185 | } |
| 186 | |
| 187 | consList = getPublicConstructors( clas.getDeclaredConstructors() ); |
| 188 | conslist.setListData( parseConstructors(consList) ); |
| 189 | } |
| 190 | |
| 191 | void setMlist( String classname ) |
| 192 | { |
no test coverage detected