Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: 6bf62071aa373bb037ef87714c4b04e1f8636413 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
/*******************************************************************************
 * 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 java.net.URI;

/**
 * Interface for console parsers able to track current working directory for build.
 *
 * @since 5.4
 */
public interface IWorkingDirectoryTracker {
	/**
	 * Returns current working directory for the current build command as determined from
	 * build output.
	 *
	 * @return URI of current working directory or {@code null}.
	 */
	public URI getWorkingDirectoryURI();
}

Back to the top