(boolean showNonInputs)
| 383 | } |
| 384 | |
| 385 | public void setShowNonInputs(boolean showNonInputs) { |
| 386 | if (this.showNonInputs == showNonInputs) return; |
| 387 | |
| 388 | this.showNonInputs = showNonInputs; |
| 389 | |
| 390 | for (IGuiComponent c : components) { |
| 391 | c.onViewChange(ViewChangeCause.DISPLAY_CLASSES_CHANGED); |
| 392 | } |
| 393 | } |
| 394 | |
| 395 | public boolean isHideUnmappedA() { |
| 396 | return hideUnmappedA; |
nothing calls this directly
no test coverage detected