Package org.spoutcraft.launcher.skin.components

Examples of org.spoutcraft.launcher.skin.components.LitePasswordBox


    name.setBounds(FRAME_WIDTH / 2 - 90, 339 + yShift, 180, 24);
    name.setFont(minecraft);
    name.addKeyListener(this);

    // Setup password box
    pass = new LitePasswordBox(this, "Password");
    pass.setBounds(FRAME_WIDTH / 2 - 90, 368 + yShift, 180, 24);
    pass.setFont(minecraft);
    pass.addKeyListener(this);

    // Setup remember checkbox
View Full Code Here

TOP

Related Classes of org.spoutcraft.launcher.skin.components.LitePasswordBox

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.