blob: 7b5105c5729e31b9eef540a5f259787017632a11 [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.SkylarkList;
/**
* A tuple of a java classes jar and its associated source and interface archives.
*/
@SkylarkModule(
name = "java_output",
category = SkylarkModuleCategory.NONE,
doc = "Java classes jar, together with their associated source and interface archives."
)
public interface OutputJarApi<FileT extends FileApi> {
@SkylarkCallable(
name = "class_jar",
doc = "A classes jar file.",
allowReturnNones = true,
structField = true
)
public FileT getClassJar();
@SkylarkCallable(
name = "ijar",
doc = "A interface jar file.",
allowReturnNones = true,
structField = true
)
public FileT getIJar();
@SkylarkCallable(
name = "manifest_proto",
doc =
"A manifest proto file. The protobuf file containing the manifest generated from "
+ "JavaBuilder.",
allowReturnNones = true,
structField = true)
public 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
public FileT getSrcJar();
@SkylarkCallable(
name = "source_jars",
doc = "A list of sources archive files.",
allowReturnNones = true,
structField = true
)
public SkylarkList<FileT> getSrcJarsSkylark();
}