File: WaypointListModel.java

package info (click to toggle)
gpsprune 10-1
  • links: PTS, VCS
  • area: main
  • in suites: squeeze
  • size: 2,220 kB
  • ctags: 3,013
  • sloc: java: 22,662; sh: 23; makefile: 16; python: 15
file content (63 lines) | stat: -rw-r--r-- 1,274 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
package tim.prune.gui;

import java.util.ArrayList;
import javax.swing.AbstractListModel;

import tim.prune.data.DataPoint;
import tim.prune.data.Track;

/**
 * Class to act as list model for the waypoint list
 */
public class WaypointListModel extends AbstractListModel
{
	Track _track = null;
	ArrayList<DataPoint> _waypoints = null;

	/**
	 * Constructor giving Track object
	 * @param inTrack Track object
	 */
	public WaypointListModel(Track inTrack)
	{
		_track = inTrack;
		_waypoints = new ArrayList<DataPoint>();
		_track.getWaypoints(_waypoints);
	}

	/**
	 * @see javax.swing.ListModel#getSize()
	 */
	public int getSize()
	{
		return _waypoints.size();
	}

	/**
	 * @see javax.swing.ListModel#getElementAt(int)
	 */
	public Object getElementAt(int inIndex)
	{
		if (inIndex < 0 || inIndex >= getSize()) return "";
		return _waypoints.get(inIndex).getWaypointName();
	}

	/**
	 * Get the waypoint at the given index
	 * @param inIndex index number, starting at 0
	 * @return DataPoint object
	 */
	public DataPoint getWaypoint(int inIndex)
	{
		return _waypoints.get(inIndex);
	}

	/**
	 * Fire event to notify that contents have changed
	 */
	public void fireChanged()
	{
		_track.getWaypoints(_waypoints);
		this.fireContentsChanged(this, 0, getSize()-1);
	}
}