All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.aspectj.org.eclipse.jdt.internal.core.nd.java.ClasspathResolver Maven / Gradle / Ivy

/*******************************************************************************
 * Copyright (c) 2015, 2016 Google, 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:
 *   Stefan Xenos (Google) - Initial implementation
 *******************************************************************************/
package org.aspectj.org.eclipse.jdt.internal.core.nd.java;

/**
 * Used for filtering and disambiguating bindings in the index to match the classpath.
 */
public interface ClasspathResolver {
	public static final int NOT_ON_CLASSPATH = -1;

	/**
	 * Returns the priority of the given resource file on the classpath or {@link #NOT_ON_CLASSPATH} if the given file
	 * is not onthe classpath. In the event that the same fully-qualified class name is found in multiple resource
	 * files, the one with the higher priority number is preferred.
	 */
	int resolve(NdResourceFile sourceOfReference, NdResourceFile toTest);
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy