当前页面:
在线文档首页 >
NetBeans API Javadoc 5.5.1
SourcePathProvider (NetBeans Debugger JPDA API) - NetBeans API Javadoc 5.5.1
org.netbeans.spi.debugger.jpda
Class SourcePathProvider
java.lang.Object
org.netbeans.spi.debugger.jpda.SourcePathProvider
public abstract class SourcePathProvider
- extends Object
Defines source path for debugger. It translates relative path
(like "java/lang/Thread.java", or class name) to url
("file:///C:/Sources/java/lang/Thread.java"). It allows to define
and modify source path.
All instances of this class should be registerred in
"Meta-inf/debugger//org.netbeans.spi.debugger.jpda.EngineContextProvider"
files. There should be at least one instance installed.
Methods inherited from class java.lang.Object |
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
PROP_SOURCE_ROOTS
public static final String PROP_SOURCE_ROOTS
- Property name constant.
- See Also:
- Constant Field Values
SourcePathProvider
public SourcePathProvider()
getRelativePath
public abstract String getRelativePath(String url,
char directorySeparator,
boolean includeExtension)
- Returns relative path (java/lang/Thread.java) for given url
("file:///C:/Sources/java/lang/Thread.java").
- Parameters:
url
- a url of resource filedirectorySeparator
- a directory separator characterincludeExtension
- whether the file extension should be included
in the result
- Returns:
- relative path
getURL
public abstract String getURL(String relativePath,
boolean global)
- Translates a relative path ("java/lang/Thread.java") to url
("file:///C:/Sources/java/lang/Thread.java"). Uses GlobalPathRegistry
if global == true.
- Parameters:
relativePath
- a relative path (java/lang/Thread.java)global
- true if global path should be used
- Returns:
- url
getSourceRoots
public abstract String[] getSourceRoots()
- Returns array of source roots.
setSourceRoots
public abstract void setSourceRoots(String[] sourceRoots)
- Sets array of source roots.
- Parameters:
sourceRoots
- a new array of sourceRoots
getOriginalSourceRoots
public abstract String[] getOriginalSourceRoots()
- Returns set of original source roots.
- Returns:
- set of original source roots
addPropertyChangeListener
public abstract void addPropertyChangeListener(PropertyChangeListener l)
- Adds property change listener.
- Parameters:
l
- new listener.
removePropertyChangeListener
public abstract void removePropertyChangeListener(PropertyChangeListener l)
- Removes property change listener.
- Parameters:
l
- removed listener.