summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSascha Haeberling <haeberling@google.com>2013-09-16 14:07:11 -0700
committerSascha Haeberling <haeberling@google.com>2013-09-16 14:07:11 -0700
commit2f92d309de115b2a41692b93d77fcbffd1260781 (patch)
tree2dee3e7f86388ceb774eb6b710c782b76e396619
parentd688c0c31d4287c03b664f6fca5c6498a1e4bd7d (diff)
downloadandroid_packages_apps_Snap-2f92d309de115b2a41692b93d77fcbffd1260781.tar.gz
android_packages_apps_Snap-2f92d309de115b2a41692b93d77fcbffd1260781.tar.bz2
android_packages_apps_Snap-2f92d309de115b2a41692b93d77fcbffd1260781.zip
Adding a simple done handler interface.
Bug: 10747001 Needed by http://ag/360619 Change-Id: I942cb601391a8cdd2c30ea152415f56d38fd0918
-rw-r--r--src/com/android/camera/util/DoneHandler.java24
1 files changed, 24 insertions, 0 deletions
diff --git a/src/com/android/camera/util/DoneHandler.java b/src/com/android/camera/util/DoneHandler.java
new file mode 100644
index 000000000..4892f26d5
--- /dev/null
+++ b/src/com/android/camera/util/DoneHandler.java
@@ -0,0 +1,24 @@
+/*
+ * Copyright (C) 2013 The Android Open Source Project
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+
+package com.android.camera.util;
+
+/**
+ * A simple done-handler interface.
+ */
+public interface DoneHandler {
+ public void onDone();
+}