KickJava   Java API By Example, From Geeks To Geeks.

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


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 fr.jayasoft.ivy.ConflictManager;
9 import fr.jayasoft.ivy.Ivy;
10 import fr.jayasoft.ivy.IvyAware;
11
12 public abstract class AbstractConflictManager implements ConflictManager, IvyAware {
13     private String JavaDoc _name;
14     private Ivy _ivy;
15
16     public Ivy getIvy() {
17         return _ivy;
18     }
19
20     public void setIvy(Ivy ivy) {
21         _ivy = ivy;
22     }
23
24     public String JavaDoc getName() {
25         return _name;
26     }
27
28     public void setName(String JavaDoc name) {
29         _name = name;
30     }
31     
32     public String JavaDoc toString() {
33         return _name;
34     }
35 }
36
Popular Tags