| org.wings.resource.ClassPathResource org.wings.resource.ClassPathStylesheetResource
ClassPathStylesheetResource | public class ClassPathStylesheetResource extends ClassPathResource (Code) | | A ClassPathStylesheetResource is a static resource whose content is
read from a classloader. It is special for its handling of occurences
of "url([classPath])" strings. These are read from classPath and
externalized.
author: ole version: $$ |
ClassPathStylesheetResource | public ClassPathStylesheetResource(String resourceFileName)(Code) | | A static css resource that is obtained from the default classpath.
|
ClassPathStylesheetResource | public ClassPathStylesheetResource(String resourceFileName, String mimeType)(Code) | | A static css resource that is obtained from the default classpath.
|
ClassPathStylesheetResource | public ClassPathStylesheetResource(ClassLoader classLoader, String resourceFileName)(Code) | | A static css resource that is obtained from the specified class loader
Parameters: classLoader - the classLoader from which the resource is obtained Parameters: resourceFileName - the css resource relative to the baseClass |
ClassPathStylesheetResource | public ClassPathStylesheetResource(ClassLoader classLoader, String resourceFileName, String mimeType)(Code) | | A static css resource that is obtained from the specified class loader
Parameters: classLoader - the classLoader from which the resource is obtained Parameters: resourceFileName - the css resource relative to the baseClass Parameters: mimeType - the mimetype of the resource |
ClassPathStylesheetResource | public ClassPathStylesheetResource(ClassLoader classLoader, String resourceFileName, String mimeType, int maxBufferSize)(Code) | | A static css resource that is obtained from the specified class loader
Parameters: classLoader - the classLoader from which the resource is obtained Parameters: resourceFileName - the css resource relative to the baseClass Parameters: mimeType - the mimetype of the resource Parameters: maxBufferSize - the maximum buffer size for the style sheet. Ifbig enough, stylesheet is cached, else parsed again. |
equals | public boolean equals(Object o)(Code) | | Two ClassPathStylesheetResource are equal if both of them are instances
of ClassPathStylesheetResource and the equals method of ClassPathResource
is true.
true if the two instances are equal. |
hashCode | public int hashCode()(Code) | | Simple hascode implementation
|
Fields inherited from org.wings.resource.ClassPathResource | final protected String resourceFileName(Code)(Java Doc)
|
|
|