blob: ffac26a942d36301c69c1579874cc240fd8cad5a [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2018 Red Hat Inc. and others.
*
* This program and the accompanying materials
* are made available under the terms of the Eclipse Public License 2.0
* which accompanies this distribution, and is available at
* https://www.eclipse.org/legal/epl-2.0/
*
* SPDX-License-Identifier: EPL-2.0
*
* Contributors:
* Red Hat - Initial Contribution
*******************************************************************************/
package org.eclipse.cdt.core;
import java.util.List;
import org.eclipse.core.runtime.jobs.Job;
/**
* @since 6.5
*
*/
public interface IConsoleParser2 extends IConsoleParser {
/**
* Process a line of output in a job
* @param s - String to process
* @param jobList - list of jobs to add to
* @return true if line processed, false otherwise
*/
boolean processLine(String s, List<Job> jobList);
}