01: package org.jicengine.io;
02:
03: /**
04: * <p>
05: * Most resources, but not all, have an url. this is a interface for them.
06: * Many existing Java classes use URLs, so it may be wise to support a way
07: * to read Resources through Urls.
08: * </p>
09: *
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 getUrl() throws java.io.IOException;
22:
23: }
|