KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > jicengine > io > UrlReadable


1 package org.jicengine.io;
2
3 /**
4  * <p>
5  * Most resources, but not all, have an url. this is a interface for them.
6  * Many existing Java classes use URLs, so it may be wise to support a way
7  * to read Resources through Urls.
8  * </p>
9  *
10  * <p>
11  * Copyright (C) 2004 Timo Laitinen
12  * </p>
13  * @author Timo Laitinen
14  * @created 2004-09-20
15  * @since JICE-0.10
16  * @version 1.0
17  */

18
19 public interface UrlReadable {
20
21     public java.net.URL JavaDoc getUrl() throws java.io.IOException JavaDoc;
22
23 }
24
Popular Tags