/** * Enables the component so that the knob position can be changed. When the disabled, the knob * position cannot be changed. * * @param x a boolean value, where true enables the component and false disables it */ public void setEnabled(boolean x) { super.setEnabled(x); Component[] children = getComponents(); for (Component child : children) { child.setEnabled(x); } }
/** * Enables the component so that the knob position can be changed. When the disabled, the knob * position cannot be changed. * * @param x a boolean value, where true enables the component and false disables it */ public void setEnabled(boolean x) { super.setEnabled(x); Component[] children = getComponents(); for (int i = 0; i < children.length; i++) { children[i].setEnabled(x); } }