Package jfireeagle.examples.swing

Source Code of jfireeagle.examples.swing.UserLocationForm

package jfireeagle.examples.swing;

import jfireeagle.FireEagleClient;
import jfireeagle.User;

public class UserLocationForm extends AbstractForm
{

  public UserLocationForm(FireEagleClient c)
  {
    super(c, 0);
   
    this.clear.setVisible(false);
   
    this.submit.setText("send user request");
  }

  @Override
  protected Object onSubmit()
  {
    User u = this.client.getUserLocation();
    return u;
  }

}
TOP

Related Classes of jfireeagle.examples.swing.UserLocationForm

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.