KickJava   Java API By Example, From Geeks To Geeks.

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


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
11
12 public class RevisionEntry {
13     private ModuleEntry _moduleEntry;
14     private String JavaDoc _revision;
15
16     public RevisionEntry(ModuleEntry mod, String JavaDoc name) {
17         _moduleEntry = mod;
18         _revision = name;
19     }
20
21     public ModuleEntry getModuleEntry() {
22         return _moduleEntry;
23     }
24     
25
26     public String JavaDoc getRevision() {
27         return _revision;
28     }
29
30     public String JavaDoc getModule() {
31         return _moduleEntry.getModule();
32     }
33
34     public String JavaDoc getOrganisation() {
35         return _moduleEntry.getOrganisation();
36     }
37
38     public OrganisationEntry getOrganisationEntry() {
39         return _moduleEntry.getOrganisationEntry();
40     }
41
42     public DependencyResolver getResolver() {
43         return _moduleEntry.getResolver();
44     }
45     
46 }
47
Popular Tags