Package javax.swing.text.GlyphViewTest

Examples of javax.swing.text.GlyphViewTest.EmptyPainter


        assertEquals(BAD, view.getBreakWeight(Y_AXIS, width, width - 0.01f));
        assertEquals(GOOD, view.getBreakWeight(Y_AXIS, 0.0f, width + 0.01f));
    }

    public void testClone() {
        view.setGlyphPainter(new EmptyPainter());
        GlyphView clone = (GlyphView) view.clone();
        assertEquals(view.getStartOffset(), clone.getStartOffset());
        assertEquals(view.getEndOffset(), clone.getEndOffset());
        assertSame(view.getElement(), clone.getElement());
        assertSame(view.getGlyphPainter(), clone.getGlyphPainter());
View Full Code Here

TOP

Related Classes of javax.swing.text.GlyphViewTest.EmptyPainter

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.