public interface IJavaModifiers
Modifier and Type | Method and Description |
---|---|
boolean |
isFinal()
Returns whether the associated Java construct is declared as final.
|
boolean |
isPackagePrivate()
Returns whether the associated Java construct is declared with no
protection modifier (package private protection).
|
boolean |
isPrivate()
Returns whether the associated Java construct is declared as private.
|
boolean |
isProtected()
Returns whether the associated Java construct is declared as protected.
|
boolean |
isPublic()
Returns whether the associated Java construct is declared as public.
|
boolean |
isStatic()
Returns whether the associated Java construct is declared as static.
|
boolean |
isSynthetic()
Returns whether the associated Java construct is synthetic.
|
boolean isPublic() throws DebugException
DebugException
- if this method fails. Reasons include:
boolean isPrivate() throws DebugException
DebugException
- if this method fails. Reasons include:
boolean isProtected() throws DebugException
DebugException
- if this method fails. Reasons include:
boolean isPackagePrivate() throws DebugException
DebugException
- if this method fails. Reasons include:
boolean isFinal() throws DebugException
DebugException
- if this method fails. Reasons include:
boolean isStatic() throws DebugException
DebugException
- if this method fails. Reasons include:
boolean isSynthetic() throws DebugException
DebugException
- if this method fails. Reasons include:
Copyright (c) 2000, 2015 Eclipse Contributors and others. All rights reserved.Guidelines for using Eclipse APIs.