aboutsummaryrefslogtreecommitdiffstats
path: root/Java/com/phidgets/event/GPSPositionFixStatusChangeListener.java
blob: 2768cea47f9e021606b659524c3daad935f80c19 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
/*
 * Copyright 2011 Phidgets Inc.  All rights reserved.
 */

package com.phidgets.event;

/**
 * This interface represents a GPSPositionFixStatusChangeEvent. This event originates from the Phidget GPS
 * 
 * @author Phidgets Inc.
 */
public interface GPSPositionFixStatusChangeListener
{
	/**
	 * This method is called with the event data when a new event arrives.
	 * 
	 * @param ae the event data object containing event data
	 */
	public void gpsPositionFixStatusChanged(GPSPositionFixStatusChangeEvent ae);
}