mirror of
https://github.com/eclipse-cdt/cdt
synced 2025-06-07 17:56:01 +02:00
Cosmetics.
This commit is contained in:
parent
47c5cf200e
commit
f7a9c21d2e
2 changed files with 3 additions and 8 deletions
|
@ -11,14 +11,11 @@
|
||||||
*******************************************************************************/
|
*******************************************************************************/
|
||||||
package org.eclipse.cdt.core.parser.ast;
|
package org.eclipse.cdt.core.parser.ast;
|
||||||
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Use compareTo() to order access restriction.
|
* Use compareTo() to order access restriction.
|
||||||
*/
|
*/
|
||||||
public enum ASTAccessVisibility {
|
public enum ASTAccessVisibility {
|
||||||
|
|
||||||
PUBLIC,
|
PUBLIC,
|
||||||
PROTECTED,
|
PROTECTED,
|
||||||
PRIVATE,
|
PRIVATE,
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
|
@ -28,11 +28,10 @@ import org.eclipse.swt.widgets.Table;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* A list with check boxes and a button bar. Typical buttons are 'Check All' and 'Uncheck All'.
|
* A list with check boxes and a button bar. Typical buttons are 'Check All' and 'Uncheck All'.
|
||||||
* List model is independend of widget creation.
|
* List model is independent of widget creation.
|
||||||
* DialogFields controls are: Label, List and Composite containing buttons.
|
* DialogFields controls are: Label, List and Composite containing buttons.
|
||||||
*/
|
*/
|
||||||
public class CheckedListDialogField<T> extends ListDialogField<T> {
|
public class CheckedListDialogField<T> extends ListDialogField<T> {
|
||||||
|
|
||||||
private int fCheckAllButtonIndex;
|
private int fCheckAllButtonIndex;
|
||||||
private int fUncheckAllButtonIndex;
|
private int fUncheckAllButtonIndex;
|
||||||
|
|
||||||
|
@ -185,7 +184,6 @@ public class CheckedListDialogField<T> extends ListDialogField<T> {
|
||||||
checkStateChanged();
|
checkStateChanged();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
void doCheckStateChanged(CheckStateChangedEvent e) {
|
void doCheckStateChanged(CheckStateChangedEvent e) {
|
||||||
if (e.getChecked()) {
|
if (e.getChecked()) {
|
||||||
@SuppressWarnings("unchecked")
|
@SuppressWarnings("unchecked")
|
||||||
|
|
Loading…
Add table
Reference in a new issue