blob: b74e0ec8774bf34bc9e00a98b2f40e909151164f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
/*
* Copyright 2006 Phidgets Inc. All rights reserved.
*/
package com.phidgets.event;
/**
* This interface represents a DetachEvent. This event originates from all Phidgets, as well as the Phidget Manager.
*
* @author Phidgets Inc.
*/
public interface DetachListener
{
/**
* This method is called with the event data when a new event arrives.
*
* @param ae the event data object containing event data
*/
public void detached(DetachEvent ae);
}
|