private IWorkbenchWindow fWindow;
private PHPEditor fEditor;
private IProject fProject;
- private IncludesScanner fLineCreator;
+ private IncludesScanner fIncludesScanner;
public void dispose() {
}
ITextSelection selection = (ITextSelection) fEditor.getSelectionProvider().getSelection();
IDocument doc = fEditor.getDocumentProvider().getDocument(fEditor.getEditorInput());
- fLineCreator = new IncludesScanner(this, fProject, (IFileEditorInput) fEditor.getEditorInput());
+ fIncludesScanner = new IncludesScanner(fProject, (IFileEditorInput) fEditor.getEditorInput());
int pos = selection.getOffset();
// System.out.println(selection.getText());
String filename = getPHPIncludeText(doc, pos);
if (filename != null && !filename.equals("")) {
try {
- IFile file = fLineCreator.getIncludeFile(filename);
- fLineCreator.addFile(file);
+ IFile file = fIncludesScanner.getIncludeFile(filename);
+ fIncludesScanner.addFile(file);
} catch (Exception e) {
// ignore
}
try {
- List list = fLineCreator.getList();
+ List list = fIncludesScanner.getList();
if (list != null && list.size() > 0) {
String workspaceLocation = PHPeclipsePlugin.getWorkspace().getRoot().getLocation().toString();