/******************************************************************************* * Copyright (c) 2012, 2012 Andrew Gvozdev 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: * Andrew Gvozdev - initial API and implementation *******************************************************************************/ package org.eclipse.cdt.core.language.settings.providers; import org.eclipse.cdt.core.IConsoleParser; import org.eclipse.cdt.core.settings.model.ICConfigurationDescription; import org.eclipse.core.runtime.CoreException; /** * Console parser interface extended to support language settings providers. * * @since 5.4 */ public interface ICBuildOutputParser extends IConsoleParser { /** * Initialize console parser. * * @param cfgDescription - configuration description for the parser. * @param cwdTracker - tracker to keep track of current working directory. * @throws CoreException if anything goes wrong. */ public void startup(ICConfigurationDescription cfgDescription, IWorkingDirectoryTracker cwdTracker) throws CoreException; @Override public boolean processLine(String line); @Override public void shutdown(); }