summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'src/com/isode/stroke/base/StartStoppable.java')
-rw-r--r--src/com/isode/stroke/base/StartStoppable.java13
1 files changed, 13 insertions, 0 deletions
diff --git a/src/com/isode/stroke/base/StartStoppable.java b/src/com/isode/stroke/base/StartStoppable.java
new file mode 100644
index 0000000..1c6c404
--- /dev/null
+++ b/src/com/isode/stroke/base/StartStoppable.java
@@ -0,0 +1,13 @@
+/*
+ * Copyright (c) 2015 Tarun Gupta.
+ * Licensed under the simplified BSD license.
+ * See Documentation/Licenses/BSD-simplified.txt for more information.
+ */
+
+package com.isode.stroke.base;
+
+public interface StartStoppable {
+
+ void start();
+ void stop();
+} \ No newline at end of file