com.opensymphony.module.sitemesh.util |
|
Java Source File Name | Type | Comment |
CharArrayReader.java | Class | This class implements a character buffer that can be used as a
character-input stream.
Modified from the JDK source in that it gets rid of the
ensureOpen() method, so we get unexpected behaviour if the
reader is closed.
The second modification is that since this class is used
internally by FastPageParser in a single thread, we don't
need any locking or synchronization. |
CharArrayWriter.java | Class | |
ClassLoaderUtil.java | Class | This class is extremely useful for loading resources and classes in a fault tolerant manner
that works across different applications servers. |
Container.java | Class | Utility for determining the Servlet Container the application is running in.
Currently supported containers: Tomcat, Resin, Orion, OC4J, WebLogic, HPAS, JRun,
Websphere.
Usage:
if (Container.get() == Container.TOMCAT) { .... |
FastByteArrayOutputStream.java | Class | A speedy implementation of ByteArrayOutputStream. |
OutputConverter.java | Class | |