Package com.substanceofcode.testlcdui

Examples of com.substanceofcode.testlcdui.TextBox


  //#ifndef DSMALLMEM
    /** Initialize URL text Box */
    final public void initializeURLBox(RssReaderMIDlet midlet, final String url,
      Form prevForm, TextField prevItem) {
    m_midlet = midlet;
    TextBox boxURL = new TextBox("URL", url, 256, TextField.URL);
    m_urlRrnForm = prevForm;
    m_urlRrnItem = prevItem;
    boxURL.addCommand(UiUtil.getCmdRsc("cmd.ok", Command.OK, 2));
    boxURL.addCommand(UiUtil.getCmdRsc("cmd.cancel", Command.CANCEL, 1));
        boxURL.setCommandListener(this);
    midlet.setCurrent( boxURL );
    }
View Full Code Here

TOP

Related Classes of com.substanceofcode.testlcdui.TextBox

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.