org.jicengine.io |
Common interface for reading url resources, file resources, classpath resources, etc.
|
Java Source File Name | Type | Comment |
AbstractResource.java | Class | implements the most general methods of the Resource-interface. |
ClasspathResource.java | Class | A resource found in the classpath. |
ClassResource.java | Class | Resource of some Class. |
FileResource.java | Class | |
PathResolver.java | Class | |
Resource.java | Interface |
Provides a common interface for reading resources and resolving relative
path-references.
A resource is typically a file that contains data to be used by an
application. |
StringResource.java | Class |
A virtual resource whose content is a String, instead of a file on disc.
StringResource makes it possible to create resource-content dynamically
and feed it to applications like any other resource.
Neighbouring resources of a StringResource
StringResource needs a 'locator resource' that specifies the 'location' of
this virtual resource. |
UrlReadable.java | Interface |
Most resources, but not all, have an url. |
UrlResource.java | Class | A resource that is read through an Url. |
WebApplicationResource.java | Class |
A Resource-implementation for accessing resources inside a web-application. |