From 2f92d309de115b2a41692b93d77fcbffd1260781 Mon Sep 17 00:00:00 2001 From: Sascha Haeberling Date: Mon, 16 Sep 2013 14:07:11 -0700 Subject: Adding a simple done handler interface. Bug: 10747001 Needed by http://ag/360619 Change-Id: I942cb601391a8cdd2c30ea152415f56d38fd0918 --- src/com/android/camera/util/DoneHandler.java | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100644 src/com/android/camera/util/DoneHandler.java (limited to 'src') 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(); +} -- cgit v1.2.3