Expands the root path, assuming the current TreeModel has been set.
()
| 2986 | * Expands the root path, assuming the current TreeModel has been set. |
| 2987 | */ |
| 2988 | private void expandRoot() { |
| 2989 | TreeModel model = getModel(); |
| 2990 | |
| 2991 | if(model != null && model.getRoot() != null) { |
| 2992 | expandPath(new TreePath(model.getRoot())); |
| 2993 | } |
| 2994 | } |
| 2995 | |
| 2996 | /** |
| 2997 | * Returns the TreePath to the next tree element that |
no test coverage detected