/**
* Parses the given transform representation.
*/
protected void parseTransform(String text) {
TransformListParser tlp = new ConcreteTransformListParser();
tlp.setTransformListHandler(this);
try {
tlp.parse(new StringReader(text));
} catch (ParseException e) {
throw new DOMException(DOMException.SYNTAX_ERR, e.getMessage());
}
}