FileObject fo = contextDispatcher.getCurrentFile();
if (fo == null) {
return null;
}
JEditorPane ep = contextDispatcher.getCurrentEditor();
Source source = Source.create(fo);
if (source == null) {
return null;
}
final int currentOffset = (ep == null) ? 0 : ep.getCaretPosition();
final String[] currentMethodPtr = new String[]{null, null, null};