aboutsummaryrefslogtreecommitdiffstats
path: root/Java/com/phidgets/event/DetachListener.java
diff options
context:
space:
mode:
Diffstat (limited to 'Java/com/phidgets/event/DetachListener.java')
-rw-r--r--Java/com/phidgets/event/DetachListener.java20
1 files changed, 20 insertions, 0 deletions
diff --git a/Java/com/phidgets/event/DetachListener.java b/Java/com/phidgets/event/DetachListener.java
new file mode 100644
index 0000000..b74e0ec
--- /dev/null
+++ b/Java/com/phidgets/event/DetachListener.java
@@ -0,0 +1,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);
+}