/******************************************************************************* * Copyright (c) 2010 Broadcom 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: * Alex Collins (Broadcom Corp.) *******************************************************************************/ package org.eclipse.cdt.internal.ui.buildconsole; import java.net.URL; import org.eclipse.cdt.ui.IBuildConsoleManager; import org.eclipse.core.resources.IProject; /** * Customized BuildConsole for the global console that displays its title differently */ public class GlobalBuildConsole extends BuildConsole { public GlobalBuildConsole(IBuildConsoleManager manager, String name, String contextId, URL iconUrl) { super(manager, name, contextId, iconUrl); } @Override public void setTitle(IProject project) { } }