- com.izforge.izpress - package com.izforge.izpress
-
- compress() - Method in class com.izforge.izpress.Compressor
-
Lauches the compression and sends the compressed HTML code to the output stream given in the
constructor.
- Compressor - Class in com.izforge.izpress
-
Compressor is the class used to compress the size of a (valid !) HTML code.
To use it, first create an instance of Compressor and give the constructor an input stream and an output
stream.
- Compressor(InputStream, OutputStream, CompressorConfig) - Constructor for class com.izforge.izpress.Compressor
-
The constructor.
- CompressorConfig - Class in com.izforge.izpress
-
The IzPress compressor configuration class.
- CompressorConfig(boolean, boolean, boolean, boolean) - Constructor for class com.izforge.izpress.CompressorConfig
-
The constructor.
- CompressorEvent - Class in com.izforge.izpress
-
This class represents a CompressorEvent.
Here's the list of the events Strings :
- "COMMENTS" : the compressor is wiping the comments
- "BORDERS" : the compressor is wiping unreadable text, out of the document scope
- "RETURNS" : the compressor is wiping the unecessary returns
- "SPACES" : the compressor is wiping the unecessary spaces
- "OUTPUT" : the compressor is sendig the data to the output stream
- "DONE" : the job is finished.
- CompressorEvent(Compressor, String) - Constructor for class com.izforge.izpress.CompressorEvent
-
The constructor.
- CompressorListener - Interface in com.izforge.izpress
-
This interface allows other classes to receive CompressorEvents.
For more details about the events, consult the CompressorEvents class documentation.