(boolean useDiffColors)
| 424 | } |
| 425 | |
| 426 | public void setUseDiffColors(boolean useDiffColors) { |
| 427 | if (this.useDiffColors == useDiffColors) return; |
| 428 | |
| 429 | this.useDiffColors = useDiffColors; |
| 430 | |
| 431 | for (IGuiComponent c : components) { |
| 432 | c.onViewChange(ViewChangeCause.DIFF_COLORS_TOGGLED); |
| 433 | } |
| 434 | } |
| 435 | |
| 436 | public NameType getNameType() { |
| 437 | return nameType; |
nothing calls this directly
no test coverage detected