Package it.eng.spago.transcoding

Interface Summary
TranscoderIFace This in the interface to be implemented by XSL transcoders.
 

Class Summary
Transcoder Questa classe effettua la transcodifica: data una stringa contente XML, applica un XSL(già processato, ovvero un'istanza di Templates) e produce HTML, WML etc Esempio di utilizzo della classe: Transcoder transcoder = new Transcoder(); //out può essere un'istanza di PrintWriter o OutputStream(vedere doc Xalan) Result result = new StreamResult(out); transcoder.setXSL(template); transcoder.perform(list.perform(), result);
TranscoderFactory Factory used to create the transcoders.