KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > fr > jayasoft > ivy > conflict > NoConflictManager


1 /*
2  * This file is subject to the license found in LICENCE.TXT in the root directory of the project.
3  *
4  * #SNAPSHOT#
5  */

6 package fr.jayasoft.ivy.conflict;
7
8 import java.util.Collection JavaDoc;
9
10 import fr.jayasoft.ivy.IvyNode;
11
12 public class NoConflictManager extends AbstractConflictManager {
13     public NoConflictManager() {
14         setName("all");
15     }
16     public Collection JavaDoc resolveConflicts(IvyNode parent, Collection JavaDoc conflicts) {
17         return conflicts;
18     }
19 }
20
Popular Tags