| java.lang.Object org.acm.seguin.ide.common.SourceBrowser org.acm.seguin.ide.jbuilder.JBuilderBrowser
JBuilderBrowser | public class JBuilderBrowser extends SourceBrowser (Code) | | Base class for source browsing. This is the generic base class.
author: Chris Seguin |
Method Summary | |
public boolean | canBrowseSource() | public FileNode | findSourceFileNode(File file) Get the FileNode that matches a File (in this project).
Parameters: file - File to look for in this project. | public void | gotoLine(int lineNumber, FileNode sourceNode) Go to a specific line in a source file. | public void | gotoSource(File file, int line) | public void | showNode(FileNode node) Show a source file. |
canBrowseSource | public boolean canBrowseSource()(Code) | | Determines if the system is in a state where it can browse the source
code
true if the source code browsing is enabled |
findSourceFileNode | public FileNode findSourceFileNode(File file)(Code) | | Get the FileNode that matches a File (in this project).
Parameters: file - File to look for in this project. FileNode The FileNode. *duh |
gotoLine | public void gotoLine(int lineNumber, FileNode sourceNode)(Code) | | Go to a specific line in a source file.
Parameters: lineNumber - Line number to go to. Parameters: sourceNode - Source file node. |
gotoSource | public void gotoSource(File file, int line)(Code) | | Actually browses to the file
Parameters: file - the file Parameters: line - the line in the file |
showNode | public void showNode(FileNode node)(Code) | | Show a source file.
Parameters: node - Source file node to show. |
|
|