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

org.eclipse.jdt.internal.core.dom.rewrite.imports.ImportAdder Maven / Gradle / Ivy

/*******************************************************************************
 * Copyright (c) 2014 Google Inc 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:
 *     John Glassmyer  - import group sorting is broken - https://bugs.eclipse.org/430303
 *******************************************************************************/
package org.eclipse.jdt.internal.core.dom.rewrite.imports;

import java.util.Collection;
import java.util.List;

interface ImportAdder {
	/**
	 * Returns a new list containing the elements of {@code existingImports} and also containing
	 * each element of {@code importsToAdd} for which {@code existingImports} does not contain an
	 * equal element.
	 */
	List addImports(Collection existingImports, Collection importsToAdd);
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy