217218219220221222223224225
DOMOutputBuffer outputbuffer; MyXHTMLTransitional() { super(new DefaultProtocolSupportFactory(), new XHTMLFullConfiguration()); outputbuffer = new DOMOutputBuffer(); outputbuffer.initialise(); }
244245246247248249250251252
DOMOutputBuffer outputbuffer; MyXHTMLFull() { super(new DefaultProtocolSupportFactory(), new XHTMLFullConfiguration()); outputbuffer = new DOMOutputBuffer(); outputbuffer.initialise(); }
61626364656667
internalDevice); } // javadoc inherited from superclass protected TransFactory getProtocolSpecificFactory() { return new XHTMLFullTransFactory(new XHTMLFullConfiguration()); }
105106107108109110111
getCellClass().getName(), cell.getClass().getName()); } protected TransFactory getFactory() { return new XHTMLFullTransFactory(new XHTMLFullConfiguration()); }
242243244245246247248
* Supporting method allows this test case to be specialized. * * @return the transformer to be tested */ protected DOMTransformer getTransformer() { return new XHTMLFullUnabridgedTransformer(new XHTMLFullConfiguration()); }
309310311312313314315
} } public static class XHTMLFullFactory extends XHTMLBasicFactory { public ProtocolConfiguration createConfiguration() { return new XHTMLFullConfiguration(); }