Package com.totsp.gwittir.client.util.UnitsParser

Examples of com.totsp.gwittir.client.util.UnitsParser.UnitValue


    /**
     * Test of parse method, of class com.totsp.gwittir.client.util.UnitsParser.
     */
    public void testParse() {
        UnitValue v = UnitsParser.parse( "100px" );
        this.assertEquals( 100, v.value );
        this.assertEquals( "px", v.units );
    }
View Full Code Here

TOP

Related Classes of com.totsp.gwittir.client.util.UnitsParser.UnitValue

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.