File: UndoConnectPhoto.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 (61 lines) | stat: -rw-r--r-- 1,371 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
package tim.prune.undo;

import tim.prune.I18nManager;
import tim.prune.UpdateMessageBroker;
import tim.prune.data.DataPoint;
import tim.prune.data.Photo;
import tim.prune.data.TrackInfo;

/**
 * Operation to undo the connection of a photo to a point
 */
public class UndoConnectPhoto implements UndoOperation
{
	private DataPoint _point = null;
	private String _filename = null;


	/**
	 * Constructor
	 * @param inPoint data point
	 * @param inFilename filename of photo
	 */
	public UndoConnectPhoto(DataPoint inPoint, String inFilename)
	{
		_point = inPoint;
		_filename = inFilename;
	}


	/**
	 * @return description of operation including photo filename
	 */
	public String getDescription()
	{
		String desc = I18nManager.getText("undo.connectphoto") + " " + _filename;
		return desc;
	}


	/**
	 * Perform the undo operation on the given Track
	 * @param inTrackInfo TrackInfo object on which to perform the operation
	 */
	public void performUndo(TrackInfo inTrackInfo) throws UndoException
	{
		// Disconnect again
		Photo photo = _point.getPhoto();
		if (photo != null)
		{
			_point.setPhoto(null);
			photo.setDataPoint(null);
			// inform subscribers
			UpdateMessageBroker.informSubscribers();
		}
		else
		{
			// throw exception if failed
			throw new UndoException(getDescription());
		}
	}
}