1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16 """wraps drop target related information about DragAndDropEvent."""
17
18
20 """ITargetDetails wraps drop target related information about
21 L{DragAndDropEvent}.
22
23 When a ITargetDetails object is used in L{DropHandler} it is often
24 preferable to cast the ITargetDetails to an implementation provided by
25 DropTarget like L{TreeTargetDetails}. They often provide a better typed,
26 drop target specific API.
27 """
28
30 """Gets target data associated with the given string key
31
32 @return: The data associated with the key
33 """
34 raise NotImplementedError
35
36
38 """@return: the drop target on which the L{DragAndDropEvent}
39 happened."""
40 raise NotImplementedError
41