KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > fr > jayasoft > ivy > namespace > NamespaceTransformer


1 /*
2  * This file is subject to the licence found in LICENCE.TXT in the root directory of the project.
3  * Copyright Jayasoft 2005 - All rights reserved
4  *
5  * #SNAPSHOT#
6  */

7 package fr.jayasoft.ivy.namespace;
8
9 import fr.jayasoft.ivy.ModuleRevisionId;
10
11 public interface NamespaceTransformer {
12     public ModuleRevisionId transform(ModuleRevisionId mrid);
13
14     public boolean isIdentity();
15 }
16
Popular Tags