1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21 package net.sf.jour.rt.agent;
22
23 import java.io.Serializable;
24
25 /***
26 * TODO Add docs
27 * Created on 02.12.2004
28 *
29 * Contributing Author(s):
30 *
31 * Misha Lifschitz <mishalifschitz at users.sourceforge.net> (Inital implementation)
32 * Vlad Skarzhevskyy <vlads at users.sourceforge.net> (Inital implementation)
33 *
34 * @author vlads
35 * @version $Revision: 1.2 $ ($Author: vlads $) $Date: 2004/12/05 02:46:39 $
36 */
37 public interface EventIdentifier extends Serializable {
38
39 public boolean equals(EventIdentifier obj);
40
41 public Object getKey();
42
43 public String getClassName();
44
45 public String getMethodName();
46
47 public String getMethodSignature();
48
49 public boolean isConstruction();
50
51 public boolean isDeletion();
52 }