blob: d794550a6db38653c74e8e8809f476b11e1a596b [file] [log] [blame]
// Copyright 2018 The Bazel Authors. All rights reserved.
//
// 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.google.devtools.build.lib.skylarkbuildapi.java;
import com.google.devtools.build.lib.skylarkbuildapi.FileApi;
import com.google.devtools.build.lib.skylarkinterface.SkylarkCallable;
import com.google.devtools.build.lib.skylarkinterface.SkylarkModule;
import com.google.devtools.build.lib.skylarkinterface.SkylarkModuleCategory;
import com.google.devtools.build.lib.syntax.Sequence;
import com.google.devtools.build.lib.syntax.StarlarkValue;
/** A tuple of a java classes jar and its associated source and interface archives. */
@SkylarkModule(
name = "java_output",
category = SkylarkModuleCategory.BUILTIN,
doc = "Java classes jar, together with their associated source and interface archives.")
public interface OutputJarApi<FileT extends FileApi> extends StarlarkValue {
@SkylarkCallable(
name = "class_jar",
doc = "A classes jar file.",
allowReturnNones = true,
structField = true)
FileT getClassJar();
@SkylarkCallable(
name = "ijar",
doc = "A interface jar file.",
allowReturnNones = true,
structField = true)
FileT getIJar();
@SkylarkCallable(
name = "manifest_proto",
doc =
"A manifest proto file. The protobuf file containing the manifest generated from "
+ "JavaBuilder.",
allowReturnNones = true,
structField = true)
FileT getManifestProto();
@SkylarkCallable(
name = "source_jar",
doc =
"A sources archive file. Deprecated. Kept for migration reasons. "
+ "Please use source_jars instead.",
allowReturnNones = true,
structField = true)
@Deprecated
FileT getSrcJar();
@SkylarkCallable(
name = "source_jars",
doc = "A list of sources archive files.",
allowReturnNones = true,
structField = true)
Sequence<FileT> getSrcJarsSkylark();
}