blob: 3824696527ec43ebc3fc50b870d77c5b51d66121 [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.skydoc.rendering;
/**
* Stores information about a skylark attribute definition.
*/
public class AttributeInfo {
private final String name;
private final String docString;
private final String typeString;
private final boolean mandatory;
public AttributeInfo(String name, String docString, String typeString, boolean mandatory) {
this.name = name;
this.docString = docString.trim();
this.typeString = typeString;
this.mandatory = mandatory;
}
@SuppressWarnings("unused") // Used by markdown template.
public String getName() {
return name;
}
@SuppressWarnings("unused") // Used by markdown template.
public String getDocString() {
return docString;
}
@SuppressWarnings("unused") // Used by markdown template.
public String getTypeString() {
return typeString;
}
/**
* Returns a string representing whether this attribute is required or optional.
*/
@SuppressWarnings("unused") // Used by markdown template.
public String getMandatoryString() {
return mandatory ? "required" : "optional";
}
}