org.sonar.plugins.javascript.bridge.protobuf.WithStatementOrBuilder Maven / Gradle / Ivy
// Generated by the protocol buffer compiler. DO NOT EDIT!
// source: estree.proto
package org.sonar.plugins.javascript.bridge.protobuf;
public interface WithStatementOrBuilder extends
// @@protoc_insertion_point(interface_extends:WithStatement)
com.google.protobuf.MessageOrBuilder {
/**
* .Node object = 1;
* @return Whether the object field is set.
*/
boolean hasObject();
/**
* .Node object = 1;
* @return The object.
*/
org.sonar.plugins.javascript.bridge.protobuf.Node getObject();
/**
* .Node object = 1;
*/
org.sonar.plugins.javascript.bridge.protobuf.NodeOrBuilder getObjectOrBuilder();
/**
* .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();
}