Follow Techotopia on Twitter

On-line Guides
All Guides
eBook Store
iOS / Android
Linux for Beginners
Office Productivity
Linux Installation
Linux Security
Linux Utilities
Linux Virtualization
Linux Kernel
System/Network Admin
Programming
Scripting Languages
Development Tools
Web Development
GUI Toolkits/Desktop
Databases
Mail Systems
openSolaris
Eclipse Documentation
Techotopia.com
Virtuatopia.com
Answertopia.com

How To Guides
Virtualization
General System Admin
Linux Security
Linux Filesystems
Web Servers
Graphics & Desktop
PC Hardware
Windows
Problem Solutions
Privacy Policy

  




 

 


Eclipse JDT
Release 3.5

org.eclipse.jdt.debug.core
Interface IJavaModifiers

All Known Subinterfaces:
IJavaFieldVariable, IJavaStackFrame, IJavaVariable

public interface IJavaModifiers

Modifiers common to Java debug elements that have associated Java member declarations. For example, the method associated with a stack frame, or the field associated with a variable.

Restriction:
This interface is not intended to be implemented by clients.
Restriction:
This interface is not intended to be extended by clients.

Method Summary
 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.
 

Method Detail

isPublic

boolean isPublic()
                 throws 
DebugException
Returns whether the associated Java construct is declared as public.

Returns:
whether the associated Java construct is declared as public
Throws:
DebugException - if this method fails. Reasons include:
  • Failure communicating with the VM. The DebugException's status code contains the underlying exception responsible for the failure.

isPrivate

boolean isPrivate()
                  throws 
DebugException
Returns whether the associated Java construct is declared as private.

Returns:
whether the associated Java construct is declared as private
Throws:
DebugException - if this method fails. Reasons include:
  • Failure communicating with the VM. The DebugException's status code contains the underlying exception responsible for the failure.

isProtected

boolean isProtected()
                    throws 
DebugException
Returns whether the associated Java construct is declared as protected.

Returns:
whether the associated Java construct is declared as protected
Throws:
DebugException - if this method fails. Reasons include:
  • Failure communicating with the VM. The DebugException's status code contains the underlying exception responsible for the failure.

isPackagePrivate

boolean isPackagePrivate()
                         throws 
DebugException
Returns whether the associated Java construct is declared with no protection modifier (package private protection).

Returns:
whether the associated Java construct is declared as package private
Throws:
DebugException - if this method fails. Reasons include:
  • Failure communicating with the VM. The DebugException's status code contains the underlying exception responsible for the failure.

isFinal

boolean isFinal()
                throws 
DebugException
Returns whether the associated Java construct is declared as final.

Returns:
whether the associated Java construct is declared as final
Throws:
DebugException - if this method fails. Reasons include:
  • Failure communicating with the VM. The DebugException's status code contains the underlying exception responsible for the failure.

isStatic

boolean isStatic()
                 throws 
DebugException
Returns whether the associated Java construct is declared as static.

Returns:
whether the associated Java construct is declared as static
Throws:
DebugException - if this method fails. Reasons include:
  • Failure communicating with the VM. The DebugException's status code contains the underlying exception responsible for the failure.

isSynthetic

boolean isSynthetic()
                    throws 
DebugException
Returns whether the associated Java construct is synthetic. Synthetic members are generated by the compiler and are not present in source code.

Returns:
whether the associated Java construct is synthetic
Throws:
DebugException - if this method fails. Reasons include:
  • Failure communicating with the VM. The DebugException's status code contains the underlying exception responsible for the failure.

Eclipse JDT
Release 3.5

Copyright (c) IBM Corp. and others 2000, 2008. All Rights Reserved.

 
 
  Published under the terms of the Eclipse Public License Version 1.0 ("EPL") Design by Interspire