(Object parent, Object child)
| 56 | } |
| 57 | |
| 58 | @Override |
| 59 | public int getIndexOfChild(Object parent, Object child) { |
| 60 | if ( parent==null ) return -1; |
| 61 | return adaptor.getChildIndex(child); |
| 62 | } |
| 63 | |
| 64 | @Override |
| 65 | public Object getChild(Object parent, int index) { |
nothing calls this directly
no test coverage detected