blob: 07772c26b93aa61f2db70918495283d44704c9e0 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
/*
* Copyright 2006 Phidgets Inc. All rights reserved.
*/
package com.phidgets.event;
/**
* This interface represents a KeyChangeEvent. This event originates from the Phidget Dictionary. Key Change events
* occur when key that matches the listen pattern is either added or changes in the Dictionary.
*
* @author Phidgets Inc.
*/
public interface KeyChangeListener
{
/**
* This method is called with the event data when a new event arrives.
*
* @param ae the event data object containing event data
*/
public void keyChanged(KeyChangeEvent ae);
}
|