summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorTarun Gupta <tarun1995gupta@gmail.com>2015-06-23 16:41:12 (GMT)
committerKevin Smith <kevin.smith@isode.com>2015-07-06 13:28:03 (GMT)
commit79b532d8b6702a5599e7a3eac1416f562405668e (patch)
tree26a19cb73e7e3553d6c09b2edf5a2979bcefd1e6 /src/com/isode/stroke/base/StartStoppable.java
parent665fc753249c848637adb7f5d44a68b77d4c642e (diff)
downloadstroke-79b532d8b6702a5599e7a3eac1416f562405668e.zip
stroke-79b532d8b6702a5599e7a3eac1416f562405668e.tar.bz2
Add Base Functionalities.
Adds FileSize, SafeString, StartStoppable, StartStopper and TriState. License: This patch is BSD-licensed, see Documentation/Licenses/BSD-simplified.txt for details. Test-Information: None. Change-Id: I94020700a77bb33dab39fb838eefc96c07b73868
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