| Home >> All >> com >> opensymphony >> module >> sitemesh >> [ util Javadoc ] |
com.opensymphony.module.sitemesh.util: Javadoc index of package com.opensymphony.module.sitemesh.util.
Package Samples:
com.opensymphony.module.sitemesh.util
Classes:
CharArrayReader: 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. Using this class instead of the standard CharArrayReader improves FastPageParser performance by 15-20%.
Container: 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: A speedy implementation of ByteArrayOutputStream. It's not synchronized, and it does not copy buffers when it's expanded. There's also no copying of the internal buffer if it's contents is extracted with the writeTo(stream) method.
OutputConverter: A converter from one character type to another This class is not threadsafe
| Home | Contact Us | Privacy Policy | Terms of Service |