* Creates a new instance for writing to the given URI.
* Useful for "xt:document" extension element
*/
public OutputMethodHandler createOutputMethodHandler(String uri)
{
Destination d = dest.resolve(uri);
if (d == null) {
return null;
}
OutputMethodHandlerImpl om = new OutputMethodHandlerImpl();
om.setDestination(d);