KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > sapia > resource > ResourceCapable


1 package org.sapia.resource;
2
3 import java.io.IOException JavaDoc;
4
5 /**
6  * Specifies the behavior of classes that can resolve resources.
7  *
8  * @author yduchesne
9  *
10  */

11 public interface ResourceCapable {
12   
13   public Resource resolveResource(String JavaDoc uri)
14     throws ResourceNotFoundException, IOException JavaDoc;
15
16 }
17
Popular Tags