org.sonar.plugins.javascript.bridge.protobuf.PropertyDefinitionOrBuilder Maven / Gradle / Ivy
// Generated by the protocol buffer compiler. DO NOT EDIT!
// source: estree.proto
// Protobuf Java Version: 3.25.5
package org.sonar.plugins.javascript.bridge.protobuf;
public interface PropertyDefinitionOrBuilder extends
// @@protoc_insertion_point(interface_extends:PropertyDefinition)
com.google.protobuf.MessageOrBuilder {
/**
* .Node key = 1;
* @return Whether the key field is set.
*/
boolean hasKey();
/**
* .Node key = 1;
* @return The key.
*/
org.sonar.plugins.javascript.bridge.protobuf.Node getKey();
/**
* .Node key = 1;
*/
org.sonar.plugins.javascript.bridge.protobuf.NodeOrBuilder getKeyOrBuilder();
/**
* optional .Node value = 2;
* @return Whether the value field is set.
*/
boolean hasValue();
/**
* optional .Node value = 2;
* @return The value.
*/
org.sonar.plugins.javascript.bridge.protobuf.Node getValue();
/**
* optional .Node value = 2;
*/
org.sonar.plugins.javascript.bridge.protobuf.NodeOrBuilder getValueOrBuilder();
/**
* bool computed = 3;
* @return The computed.
*/
boolean getComputed();
/**
* bool static = 4;
* @return The static.
*/
boolean getStatic();
}