Package com.sun.lwuit

Examples of com.sun.lwuit.Form.addComponent()


                    (int)(unselectedImages[k].getHeight() *0.8) ));
          rb.setAlignment(Label.LEFT);
            rb.setTextPosition(Label.RIGHT);
          s.setBgTransparency(70);
          status_list.add(rb);
          status_form.addComponent(rb);
          if (Contents.mystring_presence[k].equals(Datas.jid.getPresence())) {
        status_list.setSelected(k);
      }
    }
    status_form.addComponent(new MyLabel("Your mood"));
View Full Code Here


          status_form.addComponent(rb);
          if (Contents.mystring_presence[k].equals(Datas.jid.getPresence())) {
        status_list.setSelected(k);
      }
    }
    status_form.addComponent(new MyLabel("Your mood"));
        TextArea mess = new TextArea(Datas.jid.status_message, 100);
        status_form.addComponent(mess);
        infopool.put("status_message", mess);
        status_form.addCommand(Contents.ok);
 
View Full Code Here

        status_list.setSelected(k);
      }
    }
    status_form.addComponent(new MyLabel("Your mood"));
        TextArea mess = new TextArea(Datas.jid.status_message, 100);
        status_form.addComponent(mess);
        infopool.put("status_message", mess);
        status_form.addCommand(Contents.ok);
 
        status_form.addCommand(Contents.back);
        status_form.setCommandListener(this);
View Full Code Here

    TextField group = new TextField(/*"group", */group_Jid, 32);
    TextField phone = new TextField(/*"phone num.",*/ phone_num, 32);
    infopool.put("jid", jid);
    infopool.put("group", group);
    infopool.put("phone", phone);
    res.addComponent(new MyLabel("jid:"));
    res.addComponent(jid);
    res.addComponent(new MyLabel("group:"));
    res.addComponent(group);
    res.addComponent(new MyLabel("phone:"));
    res.addComponent(phone);
View Full Code Here

    TextField phone = new TextField(/*"phone num.",*/ phone_num, 32);
    infopool.put("jid", jid);
    infopool.put("group", group);
    infopool.put("phone", phone);
    res.addComponent(new MyLabel("jid:"));
    res.addComponent(jid);
    res.addComponent(new MyLabel("group:"));
    res.addComponent(group);
    res.addComponent(new MyLabel("phone:"));
    res.addComponent(phone);
    //res.append(new util.CustomSpacer(res.getWidth(), res.getHeight()));
View Full Code Here

    infopool.put("jid", jid);
    infopool.put("group", group);
    infopool.put("phone", phone);
    res.addComponent(new MyLabel("jid:"));
    res.addComponent(jid);
    res.addComponent(new MyLabel("group:"));
    res.addComponent(group);
    res.addComponent(new MyLabel("phone:"));
    res.addComponent(phone);
    //res.append(new util.CustomSpacer(res.getWidth(), res.getHeight()));
    res.addCommand(Contents.ok);
View Full Code Here

    infopool.put("group", group);
    infopool.put("phone", phone);
    res.addComponent(new MyLabel("jid:"));
    res.addComponent(jid);
    res.addComponent(new MyLabel("group:"));
    res.addComponent(group);
    res.addComponent(new MyLabel("phone:"));
    res.addComponent(phone);
    //res.append(new util.CustomSpacer(res.getWidth(), res.getHeight()));
    res.addCommand(Contents.ok);
    res.addCommand(Contents.back);
View Full Code Here

    infopool.put("phone", phone);
    res.addComponent(new MyLabel("jid:"));
    res.addComponent(jid);
    res.addComponent(new MyLabel("group:"));
    res.addComponent(group);
    res.addComponent(new MyLabel("phone:"));
    res.addComponent(phone);
    //res.append(new util.CustomSpacer(res.getWidth(), res.getHeight()));
    res.addCommand(Contents.ok);
    res.addCommand(Contents.back);
    res.setCommandListener(this);
View Full Code Here

    res.addComponent(new MyLabel("jid:"));
    res.addComponent(jid);
    res.addComponent(new MyLabel("group:"));
    res.addComponent(group);
    res.addComponent(new MyLabel("phone:"));
    res.addComponent(phone);
    //res.append(new util.CustomSpacer(res.getWidth(), res.getHeight()));
    res.addCommand(Contents.ok);
    res.addCommand(Contents.back);
    res.setCommandListener(this);
   
View Full Code Here

      TextField tf2 = new TextField( "", 32);
      TextField tf3 = new TextField( "", 64);
      infopool.put("jud_name", tf);
      infopool.put("jud_surname", tf2);
      infopool.put("jud_mail", tf3);
      res.addComponent(new MyLabel("Name"));
      res.addComponent(tf);
      res.addComponent(new MyLabel("Surname"));
      res.addComponent(tf2);
      res.addComponent(new MyLabel("Mail"));
      res.addComponent(tf3);
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.