|
The Spring Framework | |||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Object org.springframework.web.servlet.view.xslt.TransformerUtils
public abstract class TransformerUtils
Contains common behavior relating to Transformers
.
Field Summary | |
---|---|
static int |
DEFAULT_INDENT_AMOUNT
The indent amount of characters if indenting is enabled . |
Constructor Summary | |
---|---|
TransformerUtils()
|
Method Summary | |
---|---|
static void |
disableIndenting(Transformer transformer)
Disable indenting for the supplied Transformer . |
static void |
enableIndenting(Transformer transformer)
Enable indenting for the supplied Transformer . |
static void |
enableIndenting(Transformer transformer,
int indentAmount)
Enable indenting for the supplied Transformer . |
Methods inherited from class java.lang.Object |
---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
Field Detail |
---|
public static final int DEFAULT_INDENT_AMOUNT
indenting is enabled
.
Defaults to "2".
Constructor Detail |
---|
public TransformerUtils()
Method Detail |
---|
public static void enableIndenting(Transformer transformer)
Transformer
.
If the underlying XSLT engine is Xalan, then the special output
key indent-amount
will be also be set to a value
of DEFAULT_INDENT_AMOUNT
characters.
transformer
- the target transformer
IllegalArgumentException
- if the supplied Transformer
is null
Transformer.setOutputProperty(String, String)
,
OutputKeys.INDENT
public static void enableIndenting(Transformer transformer, int indentAmount)
Transformer
.
If the underlying XSLT engine is Xalan, then the special output
key indent-amount
will be also be set to a value
of DEFAULT_INDENT_AMOUNT
characters.
transformer
- the target transformerindentAmount
- the size of the indent (2 characters, 3 characters, etc.)
IllegalArgumentException
- if the supplied Transformer
is null
or if the supplied indent amount is less than zero (that is, negative)Transformer.setOutputProperty(String, String)
,
OutputKeys.INDENT
public static void disableIndenting(Transformer transformer)
Transformer
.
transformer
- the target transformer
IllegalArgumentException
- if the supplied Transformer
is null
OutputKeys.INDENT
|
The Spring Framework | |||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |