KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > fr > jayasoft > ivy > ResolvedModuleRevision


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;
7
8 import java.net.URL JavaDoc;
9 import java.util.Date JavaDoc;
10
11 /**
12  * @author x.hanin
13  *
14  */

15 public interface ResolvedModuleRevision {
16     /**
17      * The resolver which resolved this ResolvedModuleRevision
18      * @return The resolver which resolved this ResolvedModuleRevision
19      */

20     DependencyResolver getResolver();
21     /**
22      * The resolver to use to download artifacts
23      * @return The resolver to use to download artifacts
24      */

25     DependencyResolver getArtifactResolver();
26     ModuleRevisionId getId();
27     Date JavaDoc getPublicationDate();
28     ModuleDescriptor getDescriptor();
29     boolean isDownloaded();
30     boolean isSearched();
31     public URL JavaDoc getLocalMDUrl();
32 }
33
Popular Tags