blob: c7ce584eb25157b84fae92a1bf5f7c9359359930 [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.starlarkbuildapi.java;
import com.google.common.collect.ImmutableList;
import com.google.devtools.build.docgen.annot.DocCategory;
import com.google.devtools.build.lib.starlarkbuildapi.FileApi;
import javax.annotation.Nullable;
import net.starlark.java.annot.StarlarkBuiltin;
import net.starlark.java.annot.StarlarkMethod;
import net.starlark.java.eval.StarlarkValue;
/** Info object about outputs of a Java rule. */
@StarlarkBuiltin(
name = "java_output_jars",
category = DocCategory.PROVIDER,
doc = "Information about outputs of a Java rule.")
public interface JavaRuleOutputJarsProviderApi<OutputJarT extends OutputJarApi<?>>
extends StarlarkValue {
@StarlarkMethod(name = "jars", doc = "A list of jars the rule outputs.", structField = true)
ImmutableList<OutputJarT> getOutputJars();
@StarlarkMethod(
name = "jdeps",
doc = "The jdeps file for rule outputs.",
structField = true,
allowReturnNones = true)
@Nullable
FileApi getJdeps();
@StarlarkMethod(
name = "native_headers",
doc = "An archive of native header files.",
structField = true,
allowReturnNones = true)
@Nullable
FileApi getNativeHeaders();
}