Interface SourceLocationOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
SourceLocation,SourceLocation.Builder
public interface SourceLocationOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description intgetColumn()Column within a line.intgetLine()Line inside the file.StringgetPath()Path to the source file within the source context of the target binary.com.google.protobuf.ByteStringgetPathBytes()Path to the source file within the source context of the target binary.-
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
getPath
String getPath()
Path to the source file within the source context of the target binary.
string path = 1;- Returns:
- The path.
-
getPathBytes
com.google.protobuf.ByteString getPathBytes()
Path to the source file within the source context of the target binary.
string path = 1;- Returns:
- The bytes for path.
-
getLine
int getLine()
Line inside the file. The first line in the file has the value `1`.
int32 line = 2;- Returns:
- The line.
-
getColumn
int getColumn()
Column within a line. The first column in a line as the value `1`. Agents that do not support setting breakpoints on specific columns ignore this field.
int32 column = 3;- Returns:
- The column.
-
-