public void show()

in org.apache.easyant4e/src/org/apache/easyant4e/console/EasyAntConsoleImpl.java [52:70]


    public void show() {        
        IConsoleManager manager = ConsolePlugin.getDefault().getConsoleManager();
        IConsole[] existing = manager.getConsoles();
        boolean exists = false;
        for (int i = 0; i < existing.length; i++) {
            if (this == existing[i]) {
                exists = true;
            }
        }
        if (!exists) {
            manager.addConsoles(new IConsole[] { this });
        }
        manager.showConsoleView(this);
        setOpen(true);
        
        //show the Error log view
        showErrorLogView();
        
    }