-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathClientEvent.java
More file actions
27 lines (23 loc) · 538 Bytes
/
ClientEvent.java
File metadata and controls
27 lines (23 loc) · 538 Bytes
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
package Thread.monitor;
import java.util.EventObject;
/**
* Created by szh on 2017/5/12.
*/
public class ClientEvent extends EventObject{
/**
* Constructs a prototypical Event.
*
* @param source The object on which the Event initially occurred.
* @throws IllegalArgumentException if source is null.
*/
public ClientEvent(Object source) {
super(source);
}
private int id;
public int getId() {
return id;
}
public void setId(int id) {
this.id = id;
}
}