Package com.sun.lwuit.layouts

Examples of com.sun.lwuit.layouts.BorderLayout


   *Display existing conversations and the form to join in a new chat room
   * @return
   */
  public void getGuiRoomList() {
    Form rooms = new Form("Chat Rooms");
        rooms.setLayout(new BorderLayout());
       // rooms.setScrollable(false);
        Container cont = new Container();
        cont.setLayout(new BoxLayout(BoxLayout.Y_AXIS));
    //show existing chats
    //openrooms = new ChoiceGroup("Your Active Chats", ChoiceGroup.EXCLUSIVE);
View Full Code Here

TOP

Related Classes of com.sun.lwuit.layouts.BorderLayout

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.