List of usage examples for org.eclipse.jface.dialogs ControlEnableState disable
public static ControlEnableState disable(Control w, List<Control> exceptions)
From source file:org.eclipse.pde.ds.internal.annotations.DSAnnotationPropertyPage.java
License:Open Source License
private void enablePreferenceContent(boolean enable) { if (enable) { if (configBlockEnableState != null) { configBlockEnableState.restore(); configBlockEnableState = null; }/*w ww. j a va 2 s. c o m*/ } else { if (configBlockEnableState == null) { configBlockEnableState = ControlEnableState.disable(configBlockControl, Arrays.asList(optionBlockControl)); } } }