Package org.jnode.driver.textscreen

Examples of org.jnode.driver.textscreen.TextScreen.copyTo()


        TextScreen oldScreen = screen;
        screen = systemScreen;

        final int size = oldScreen.getWidth() * oldScreen.getHeight();
        ensureVisible(oldScreen, 0);
        oldScreen.copyTo(screen, 0, size);
        syncScreen(0, size);
    }

    private final void ensureVisible(TextScreen scr, int row) {
        if (scr instanceof ScrollableTextScreen) {
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.