Package jfireeagle.examples.swing

Source Code of jfireeagle.examples.swing.LookupForm

package jfireeagle.examples.swing;

import jfireeagle.FireEagleClient;
import jfireeagle.LocationParameters;

public class LookupForm extends AbstractForm
{
  private LocationParametersPanel locPanel = new LocationParametersPanel();
 
  public LookupForm(FireEagleClient c)
  {
    super(c, 1);
   
    add(locPanel);
   
  }
 
  public Object onSubmit()
  {
    LocationParameters loc = locPanel.getLocationParameters();
   
    return this.getClient().lookup(loc);
   
  }


}
TOP

Related Classes of jfireeagle.examples.swing.LookupForm

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.