blob: bb760418256a9387897a6b301dfc77934ed17e4b [file] [log] [blame]
/*=============================================================================#
# Copyright (c) 2016, 2020 Stephan Wahlbrink and others.
#
# This program and the accompanying materials are made available under the
# terms of the Eclipse Public License 2.0 which is available at
# https://www.eclipse.org/legal/epl-2.0, or the Apache License, Version 2.0
# which is available at https://www.apache.org/licenses/LICENSE-2.0.
#
# SPDX-License-Identifier: EPL-2.0 OR Apache-2.0
#
# Contributors:
# Stephan Wahlbrink <sw@wahlbrink.eu> - initial API and implementation
#=============================================================================*/
package org.eclipse.statet.ltk.buildpaths.core;
import org.eclipse.core.runtime.IPath;
import org.eclipse.statet.jcommons.collections.ImList;
public interface IBuildpathElement {
String SOURCE= "Source"; //$NON-NLS-1$
String PROJECT= "Project"; //$NON-NLS-1$
String LIBRARY= "Library"; //$NON-NLS-1$
String VARIABLE= "Variable"; //$NON-NLS-1$
BuildpathElementType getType();
String getTypeName();
IPath getPath();
ImList<IPath> getInclusionPatterns();
ImList<IPath> getExclusionPatterns();
Object getSourceAttachmentPath();
IPath getOutputPath();
boolean isExported();
ImList<IBuildpathAttribute> getExtraAttributes();
}