KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > com > openedit > store > ProductPathFinder


1 package com.openedit.store;
2
3 /**
4  * An interface that maps a product ID to a full path.
5  *
6  * @author Eric Galluzzo
7  */

8 public interface ProductPathFinder
9 {
10     /**
11      * Converts the given ID to a relative path, not including any file
12      * extension.
13      *
14      * @param inProductId The product ID
15      *
16      * @return The full path
17      */

18     String JavaDoc idToPath( String JavaDoc inProductId );
19 }
20
Popular Tags