commit | c68c27de9b393e24d053c120cf2d2d8034e7ec0e | [log] [tgz] |
---|---|---|
author | Googler <noreply@google.com> | Thu Sep 13 05:12:58 2018 -0700 |
committer | Copybara-Service <copybara-piper@google.com> | Thu Sep 13 05:14:28 2018 -0700 |
tree | 41fcdab33faae98d6e106b862c8b1d60930fb6b3 | |
parent | 571026f8937d245d43c2e60156f4d60e382b4d38 [diff] [blame] |
Added information about function params in builtin proto file. RELNOTES: None PiperOrigin-RevId: 212796678
diff --git a/src/main/java/com/google/devtools/build/docgen/RuleDocumentationAttribute.java b/src/main/java/com/google/devtools/build/docgen/RuleDocumentationAttribute.java index 5f543f9..cac1303 100644 --- a/src/main/java/com/google/devtools/build/docgen/RuleDocumentationAttribute.java +++ b/src/main/java/com/google/devtools/build/docgen/RuleDocumentationAttribute.java
@@ -147,6 +147,14 @@ return expandedHtmlDoc; } + /** Returns whether the param is required or optional. */ + public boolean isMandatory() { + if (attribute == null) { + return false; + } + return attribute.isMandatory(); + } + private String getDefaultValue() { if (attribute == null) { return "";