@Override
 public String getName() throws DebugException {
   if (console == null) {
     return PydevConsole.CONSOLE_NAME;
   }
   return console.getName();
 }
Example #2
0
 /** IConsole: Add a link to the console */
 public void addLink(IHyperlink link, int offset, int length) {
   try {
     super.addHyperlink(link, offset, length);
   } catch (BadLocationException e) {
     Log.log(e);
   }
 }