( Class clas )
| 223 | } |
| 224 | |
| 225 | void setFieldList( Class clas ) { |
| 226 | if ( clas == null ) { |
| 227 | fieldlist.setListData( new Object [] { } ); |
| 228 | return; |
| 229 | } |
| 230 | |
| 231 | fieldList = getPublicFields(clas.getDeclaredFields()); |
| 232 | fieldlist.setListData( parseFields(fieldList) ); |
| 233 | } |
| 234 | |
| 235 | void setMethodLine( Object method ) { |
| 236 | methodLine.setText( method==null ? "" : method.toString() ); |
no test coverage detected