X-Git-Url: http://git.argeo.org/?a=blobdiff_plain;f=cms%2Forg.argeo.slc.repo%2Fsrc%2Forg%2Feclipse%2Faether%2Fgraph%2FDependencyFilter.java;fp=cms%2Forg.argeo.slc.repo%2Fsrc%2Forg%2Feclipse%2Faether%2Fgraph%2FDependencyFilter.java;h=0000000000000000000000000000000000000000;hb=6fc94d69efe089414ac9e63bde3efab1cbf7b7ca;hp=c776ddc197719d5aee7103aed2c626e12f08a5a6;hpb=b36c62642bd0db11b3133b369cc026fd4b7a1ec6;p=gpl%2Fargeo-slc.git diff --git a/cms/org.argeo.slc.repo/src/org/eclipse/aether/graph/DependencyFilter.java b/cms/org.argeo.slc.repo/src/org/eclipse/aether/graph/DependencyFilter.java deleted file mode 100644 index c776ddc19..000000000 --- a/cms/org.argeo.slc.repo/src/org/eclipse/aether/graph/DependencyFilter.java +++ /dev/null @@ -1,33 +0,0 @@ -/******************************************************************************* - * Copyright (c) 2010, 2011 Sonatype, Inc. - * 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: - * Sonatype, Inc. - initial API and implementation - *******************************************************************************/ -package org.eclipse.aether.graph; - -import java.util.List; - -/** - * A filter to include/exclude dependency nodes during other operations. - */ -public interface DependencyFilter -{ - - /** - * Indicates whether the specified dependency node shall be included or excluded. - * - * @param node The dependency node to filter, must not be {@code null}. - * @param parents The (read-only) chain of parent nodes that leads to the node to be filtered, must not be - * {@code null}. Iterating this (possibly empty) list walks up the dependency graph towards the root - * node, i.e. the immediate parent node (if any) is the first node in the list. The size of the list also - * denotes the zero-based depth of the filtered node. - * @return {@code true} to include the dependency node, {@code false} to exclude it. - */ - boolean accept( DependencyNode node, List parents ); - -}