blob: 2c741a0eac391fc4fab2b2d67bc54de614038095 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2000, 2006 IBM Corporation and others.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/epl-v10.html
*
* Contributors:
* IBM Corporation - initial API and implementation
*******************************************************************************/
package org.eclipse.team.internal.ccvs.ui.console;
import org.eclipse.team.internal.ccvs.ui.CVSUIPlugin;
//commented out because of Bug 75387
//import org.eclipse.team.internal.ccvs.ui.console.CVSOutputConsole.MyLifecycle;
import org.eclipse.ui.console.*;
/**
* Console factory is used to show the console from the Console view "Open Console"
* drop-down action. This factory is registered via the org.eclipse.ui.console.consoleFactory
* extension point.
*
* @since 3.1
*/
public class CVSConsoleFactory implements IConsoleFactory {
public CVSConsoleFactory() {
}
public void openConsole() {
showConsole();
}
public static void showConsole() {
CVSOutputConsole console = CVSUIPlugin.getPlugin().getConsole();
if (console != null) {
IConsoleManager manager = ConsolePlugin.getDefault().getConsoleManager();
IConsole[] existing = manager.getConsoles();
boolean exists = false;
for (int i = 0; i < existing.length; i++) {
if(console == existing[i])
exists = true;
}
if(! exists)
manager.addConsoles(new IConsole[] {console});
manager.showConsoleView(console);
}
}
public static void closeConsole() {
IConsoleManager manager = ConsolePlugin.getDefault().getConsoleManager();
CVSOutputConsole console = CVSUIPlugin.getPlugin().getConsole();
if (console != null) {
manager.removeConsoles(new IConsole[] {console});
ConsolePlugin.getDefault().getConsoleManager().addConsoleListener(console.new MyLifecycle());
}
}
}