KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > rero > gui > windows > ClientWindowEvent


1 package rero.gui.windows;
2
3 public class ClientWindowEvent
4 {
5    protected ClientWindow source;
6
7    public ClientWindowEvent(ClientWindow src)
8    {
9        source = src;
10    }
11
12    public ClientWindow getSource()
13    {
14        return source;
15    }
16 }
17
18
Popular Tags