summaryrefslogtreecommitdiff
path: root/altoslib/AltosIdleMonitorListener.java
diff options
context:
space:
mode:
authorKeith Packard <keithp@keithp.com>2012-07-17 21:04:23 -0700
committerKeith Packard <keithp@keithp.com>2012-07-17 21:04:23 -0700
commitf6921c9040b1f1fc4408d163532b0695a3611195 (patch)
treee60f16c042f15775446efcac22980f5b97f9c664 /altoslib/AltosIdleMonitorListener.java
parentb4be63627e146c7c868b5b3468d34880a561cfba (diff)
altoslib: Move idle monitor managing code to altoslib
More stuff to be shared (potentially) Signed-off-by: Keith Packard <keithp@keithp.com>
Diffstat (limited to 'altoslib/AltosIdleMonitorListener.java')
-rw-r--r--altoslib/AltosIdleMonitorListener.java28
1 files changed, 28 insertions, 0 deletions
diff --git a/altoslib/AltosIdleMonitorListener.java b/altoslib/AltosIdleMonitorListener.java
new file mode 100644
index 00000000..3c18bfaa
--- /dev/null
+++ b/altoslib/AltosIdleMonitorListener.java
@@ -0,0 +1,28 @@
+/*
+ * Copyright © 2012 Keith Packard <keithp@keithp.com>
+ *
+ * This program is free software; you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License as published by
+ * the Free Software Foundation; version 2 of the License.
+ *
+ * This program is distributed in the hope that it will be useful, but
+ * WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ * General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License along
+ * with this program; if not, write to the Free Software Foundation, Inc.,
+ * 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA.
+ */
+
+package org.altusmetrum.AltosLib;
+
+import java.io.*;
+import java.util.*;
+import java.text.*;
+import java.util.prefs.*;
+import java.util.concurrent.*;
+
+public interface AltosIdleMonitorListener {
+ public void update(AltosState state);
+} \ No newline at end of file