org.netbeans.api.debugger/1 1.31.1

org.netbeans.api.debugger
Class Breakpoint.GroupProperties

java.lang.Object
  extended by org.netbeans.api.debugger.Breakpoint.GroupProperties
Enclosing class:
Breakpoint

public abstract static class Breakpoint.GroupProperties
extends Object

Group properties of breakpoint. These are used by the Breakpoint Window to show a tree hierarchy of groups and associated breakpoints.

Since:
1.25

Constructor Summary
Breakpoint.GroupProperties()
           
 
Method Summary
abstract  DebuggerEngine[] getEngines()
          Get the debugger engines that are currently actively using this breakpoint.
abstract  FileObject[] getFiles()
          Get the source files containing this breakpoint.
abstract  String getLanguage()
          Get the language of the source file with the breakpoint.
abstract  Project[] getProjects()
          Get the projects containing this breakpoint.
abstract  String getType()
          Get the breakpoint type.
abstract  boolean isHidden()
          Test is this breakpoint is hidden (not visible to the user).
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

Breakpoint.GroupProperties

public Breakpoint.GroupProperties()
Method Detail

getLanguage

public abstract String getLanguage()
Get the language of the source file with the breakpoint.

Returns:
The human-readable language of the breakpoint source file or null when this does not apply.
See Also:
org.netbeans.spi.debugger.ui.BreakpointType.getCategoryDisplayName()

getType

public abstract String getType()
Get the breakpoint type.

Returns:
The human-readable type of the breakpoint or null when this does not apply.
See Also:
org.netbeans.spi.debugger.ui.BreakpointType.getTypeDisplayName()

getFiles

public abstract FileObject[] getFiles()
Get the source files containing this breakpoint.

Returns:
The source files where this breakpoint is submitted or null when this does not apply.

getProjects

public abstract Project[] getProjects()
Get the projects containing this breakpoint.

Returns:
The projects in which this breakpoint is submitted or null when this does not apply.

getEngines

public abstract DebuggerEngine[] getEngines()
Get the debugger engines that are currently actively using this breakpoint.

Returns:
The engines in which this breakpoint is active or null when this does not apply.

isHidden

public abstract boolean isHidden()
Test is this breakpoint is hidden (not visible to the user).

Returns:
true when this breakpoint is hidden, false otherwise.

org.netbeans.api.debugger/1 1.31.1

Built on December 5 2011.  |  Portions Copyright 1997-2011 Sun Microsystems, Inc. All rights reserved.