org.sonar.plugins.javascript.bridge.protobuf.LabeledStatementOrBuilder Maven / Gradle / Ivy
// Generated by the protocol buffer compiler. DO NOT EDIT!
// source: estree.proto
package org.sonar.plugins.javascript.bridge.protobuf;
public interface LabeledStatementOrBuilder extends
// @@protoc_insertion_point(interface_extends:LabeledStatement)
com.google.protobuf.MessageOrBuilder {
/**
* .Node label = 1;
* @return Whether the label field is set.
*/
boolean hasLabel();
/**
* .Node label = 1;
* @return The label.
*/
org.sonar.plugins.javascript.bridge.protobuf.Node getLabel();
/**
* .Node label = 1;
*/
org.sonar.plugins.javascript.bridge.protobuf.NodeOrBuilder getLabelOrBuilder();
/**
* .Node body = 2;
* @return Whether the body field is set.
*/
boolean hasBody();
/**
* .Node body = 2;
* @return The body.
*/
org.sonar.plugins.javascript.bridge.protobuf.Node getBody();
/**
* .Node body = 2;
*/
org.sonar.plugins.javascript.bridge.protobuf.NodeOrBuilder getBodyOrBuilder();
}