++
граф процедур на json
This commit is contained in:
@@ -24,8 +24,14 @@ public class FileGraphTree extends DataTree {
|
||||
public void ShowCurrentObject() throws Exception {
|
||||
Global.mainModule.getFile().form.EventsOff();
|
||||
Object o = Global.mainModule.get(currentName());
|
||||
Global.mainModule.getFile().form.getEditor().gotoLine((o instanceof FileObjectWithMessages) ? (((FileObjectWithMessages) o).line) : 1);
|
||||
Global.mainModule.getFile().form.ShowMessages();
|
||||
if (o instanceof FileObjectWithMessages){
|
||||
FileObjectWithMessages f = (FileObjectWithMessages) o;
|
||||
Global.mainModule.getFile().form.getEditor().gotoLine(f.line);
|
||||
Global.mainModule.getFile().form.ShowMessages(f);
|
||||
}else {
|
||||
Global.mainModule.getFile().form.getEditor().gotoLine(1);
|
||||
Global.mainModule.getFile().form.ShowMessages();
|
||||
}
|
||||
Global.mainModule.getFile().form.EventsOn();
|
||||
}
|
||||
@Override
|
||||
|
||||
Reference in New Issue
Block a user