summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLaura Lu <lauralu@google.com>2019-05-15 20:56:14 -0700
committerLaura Lu <lauralu@google.com>2019-05-17 03:54:56 +0000
commit69684eeaaf5c51f2aa3774d468705f9e36f9f09f (patch)
tree5bbe1edffb8177ef8b258199cccb3532629b5c42
parent76e30b19ffb8f4126b25c5a98faa02d1ccefbdaf (diff)
downloadplatform_testing-69684eeaaf5c51f2aa3774d468705f9e36f9f09f.tar.gz
Merge "Add app helper interface for Calculator" am: 585f3dcd36
am: 9717869fd6 Bug: 132450244 Change-Id: Id1ccc8723ef74be1c1849b2c6cf6f96e2a55680c (cherry picked from commit c3b7e4ae20a748230534e9234c97d5392ea10c0b)
-rw-r--r--libraries/app-helpers/interfaces/handheld/src/android/platform/helpers/ICalculatorHelper.java20
1 files changed, 20 insertions, 0 deletions
diff --git a/libraries/app-helpers/interfaces/handheld/src/android/platform/helpers/ICalculatorHelper.java b/libraries/app-helpers/interfaces/handheld/src/android/platform/helpers/ICalculatorHelper.java
new file mode 100644
index 000000000..72098d1da
--- /dev/null
+++ b/libraries/app-helpers/interfaces/handheld/src/android/platform/helpers/ICalculatorHelper.java
@@ -0,0 +1,20 @@
+/*
+ * Copyright (C) 2019 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 android.platform.helpers;
+
+/** An App Helper interface for Calculator. */
+public interface ICalculatorHelper extends IAppHelper {}