(boolean value)
| 355 | } |
| 356 | |
| 357 | public void setSortMatchesAlphabetically(boolean value) { |
| 358 | if (this.sortMatchesAlphabetically == value) return; |
| 359 | |
| 360 | this.sortMatchesAlphabetically = value; |
| 361 | |
| 362 | for (IGuiComponent c : components) { |
| 363 | c.onViewChange(ViewChangeCause.SORTING_CHANGED); |
| 364 | } |
| 365 | } |
| 366 | |
| 367 | public boolean isUseClassTreeView() { |
| 368 | return useClassTreeView; |
nothing calls this directly
no test coverage detected