summaryrefslogtreecommitdiffstats
path: root/jill-api/src/com/android/jill/api/v01/Cli01TranslationTask.java
diff options
context:
space:
mode:
authorBenoit Lamarche <benoitlamarche@google.com>2015-06-18 19:21:14 +0200
committerBenoit Lamarche <benoitlamarche@google.com>2015-06-18 19:40:18 +0200
commitd16b6285320be7ac0450ed48ece7881078315782 (patch)
treedc051d731e0245e870ca8bf5bac03ad6c9c21869 /jill-api/src/com/android/jill/api/v01/Cli01TranslationTask.java
parentdaf8bf8a8ff6f273c88c4e1d67b0d26315ece444 (diff)
downloadtoolchain_jill-d16b6285320be7ac0450ed48ece7881078315782.zip
toolchain_jill-d16b6285320be7ac0450ed48ece7881078315782.tar.gz
toolchain_jill-d16b6285320be7ac0450ed48ece7881078315782.tar.bz2
Declare CLI and let Jill implement it
Change-Id: I41e09c66b690b06bf761d0e3b91059bce578d760
Diffstat (limited to 'jill-api/src/com/android/jill/api/v01/Cli01TranslationTask.java')
-rw-r--r--jill-api/src/com/android/jill/api/v01/Cli01TranslationTask.java32
1 files changed, 32 insertions, 0 deletions
diff --git a/jill-api/src/com/android/jill/api/v01/Cli01TranslationTask.java b/jill-api/src/com/android/jill/api/v01/Cli01TranslationTask.java
new file mode 100644
index 0000000..61734b9
--- /dev/null
+++ b/jill-api/src/com/android/jill/api/v01/Cli01TranslationTask.java
@@ -0,0 +1,32 @@
+/*
+ * Copyright (C) 2015 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.jill.api.v01;
+
+/**
+ * A task allowing to run Jill once.
+ */
+public interface Cli01TranslationTask {
+
+ /**
+ * Runs the Jill compiler. May be called only once.
+ * @return command line status
+ * @throws TranslationException If a fatal error occurred during the translation
+ * @throws IllegalStateException If the translation task is run more than once
+ */
+ int run() throws TranslationException, IllegalStateException;
+}
+