Package com.volantis.mcs.protocols.trans

Examples of com.volantis.mcs.protocols.trans.TransElement


     * Simple method test
     */
    public void testGetTable() {
        TransFactory factory = new XHTMLBasicTransFactory(configuration);
        Element element = domFactory.createElement();
        TransElement trans = factory.getTable(element, protocol);
       
        assertTrue("getTable returned an instance of " +
                   trans.getClass().getName(),
                   trans instanceof XHTMLBasicTransTable);
    }
View Full Code Here


     * Simple method test
     */
    public void testGetCell() {
        TransFactory factory = new XHTMLBasicTransFactory(configuration);
        Element element = domFactory.createElement();
        TransElement trans = factory.getCell(element, element, 0, 0, null);
       
        assertTrue("getCell returned an instance of " +
                   trans.getClass().getName(),
                   trans instanceof XHTMLBasicTransCell);    }
View Full Code Here

TOP

Related Classes of com.volantis.mcs.protocols.trans.TransElement

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.