Package org.mypj.tele.client

Examples of org.mypj.tele.client.BasicInfo


    table.setWidget(3, 0, saveButton);
    initWidget(table);
  }

  protected boolean doSave() {
    BasicInfo info = new BasicInfo();
    info.setEditName(txt_name.getValue());
    info.setEditContact(txt_contact.getValue());
    info.setEditBirthday(txt_birthday.getValue());
    info.setEditSex(txt_sex.getValue());
    info.setEditPs(txt_ps.getValue());
    if (!U.Check(info)) {
      return false;
    }
    doAsync(info);
    return true;
View Full Code Here

TOP

Related Classes of org.mypj.tele.client.BasicInfo

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.