Examples of AbstractBaseFont


Examples of org.jrebirth.af.core.resource.font.AbstractBaseFont

        checkRealFont(TestFonts.TEST_REAL_FONT_2);
    }

    private void checkRealFont(final FontItem fontItem) {
        final Font font = fontItem.get();
        final AbstractBaseFont rf = (AbstractBaseFont) ResourceBuilders.FONT_BUILDER.getParam(fontItem);

        assertNotNull(font);
        assertEquals(font.getName(), rf.name().name());
        assertEquals(font.getSize(), rf.size(), 0.0);
    }
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. 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.