KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > fr > jayasoft > ivy > resolver > OrganisationEntry


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.resolver;
7
8 import fr.jayasoft.ivy.DependencyResolver;
9
10 public class OrganisationEntry {
11     private DependencyResolver _resolver;
12     private String JavaDoc _organisation;
13
14     public OrganisationEntry(DependencyResolver resolver, String JavaDoc organisation) {
15         _resolver = resolver;
16         _organisation = organisation;
17     }
18
19     public String JavaDoc getOrganisation() {
20         return _organisation;
21     }
22     
23     public DependencyResolver getResolver() {
24         return _resolver;
25     }
26     
27 }
28
Popular Tags