summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSascha Haeberling <haeberling@google.com>2013-09-17 22:51:43 +0000
committerAndroid (Google) Code Review <android-gerrit@google.com>2013-09-17 22:51:43 +0000
commit4ee4d99cfc519847bd8f84aca9ece5d2b6519536 (patch)
treeceef7e155dc341620a792d730f8fe8021822ce7a
parent9c0492a606ca48dbc3e56b03051ea9242d952e3e (diff)
parent2f92d309de115b2a41692b93d77fcbffd1260781 (diff)
downloadandroid_packages_apps_Snap-4ee4d99cfc519847bd8f84aca9ece5d2b6519536.tar.gz
android_packages_apps_Snap-4ee4d99cfc519847bd8f84aca9ece5d2b6519536.tar.bz2
android_packages_apps_Snap-4ee4d99cfc519847bd8f84aca9ece5d2b6519536.zip
Merge "Adding a simple done handler interface." into gb-ub-photos-carlsbad
-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();
+}