aboutsummaryrefslogtreecommitdiffstats
path: root/Java/com/phidgets/event/OutputChangeListener.java
diff options
context:
space:
mode:
Diffstat (limited to 'Java/com/phidgets/event/OutputChangeListener.java')
-rw-r--r--Java/com/phidgets/event/OutputChangeListener.java21
1 files changed, 21 insertions, 0 deletions
diff --git a/Java/com/phidgets/event/OutputChangeListener.java b/Java/com/phidgets/event/OutputChangeListener.java
new file mode 100644
index 0000000..998ffbf
--- /dev/null
+++ b/Java/com/phidgets/event/OutputChangeListener.java
@@ -0,0 +1,21 @@
+/*
+ * Copyright 2006 Phidgets Inc. All rights reserved.
+ */
+
+package com.phidgets.event;
+
+/**
+ * This interface represents a OutputChangeEvent. This event originates from the
+ * Phidget Interface Kit and the Phidget RFID Reader
+ *
+ * @author Phidgets Inc.
+ */
+public interface OutputChangeListener
+{
+ /**
+ * This method is called with the event data when a new event arrives.
+ *
+ * @param ae the event data object containing event data
+ */
+ public void outputChanged(OutputChangeEvent ae);
+}