summaryrefslogtreecommitdiffstats
path: root/jill-api/src/com/android/jill/api/v01/Cli01Config.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/Cli01Config.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/Cli01Config.java')
-rw-r--r--jill-api/src/com/android/jill/api/v01/Cli01Config.java59
1 files changed, 59 insertions, 0 deletions
diff --git a/jill-api/src/com/android/jill/api/v01/Cli01Config.java b/jill-api/src/com/android/jill/api/v01/Cli01Config.java
new file mode 100644
index 0000000..2396f43
--- /dev/null
+++ b/jill-api/src/com/android/jill/api/v01/Cli01Config.java
@@ -0,0 +1,59 @@
+/*
+ * 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;
+
+import com.android.jill.api.JillConfig;
+
+import java.io.File;
+import java.io.PrintStream;
+
+import javax.annotation.Nonnull;
+
+/**
+* A configuration for CLI level 01 of Jill.
+*/
+public interface Cli01Config extends JillConfig {
+
+ /**
+ * Creates an instance of the {@link Cli01TranslationTask} according to this configuration.
+ * @param args To be handled as command line arguments.
+ * @return The {@link Cli01TranslationTask}
+ * @throws ConfigurationException
+ */
+ @Nonnull
+ Cli01TranslationTask getTask(@Nonnull String[] args) throws ConfigurationException;
+
+ /**
+ * Redirect Jill's error output to the given stream.
+ * @param standardError The stream where to write errors.
+ */
+ void setStandardError(@Nonnull PrintStream standardError);
+
+ /**
+ * Redirect Jill's standards output to the given stream.
+ * @param standardOutput The stream where to write non error messages.
+ */
+ void setStandardOutput(@Nonnull PrintStream standardOutput);
+
+ /**
+ * Defines Jill's working directory.
+ * @param workingDirectory The base directory that will be used to evaluate non absolute file
+ * paths.
+ */
+ void setWorkingDirectory(@Nonnull File workingDirectory);
+}
+