Interface DebuggedSourceFileOrBuilder
- All Superinterfaces:
MessageLiteOrBuilder, MessageOrBuilder
- All Known Implementing Classes:
DebuggedSourceFile, DebuggedSourceFile.Builder
-
Method Summary
Modifier and TypeMethodDescriptionlonggetBytes()Byte size of the file.Path to the source code file.Path to the source code file.getHost()The host name on which a source code file is located.The host name on which a source code file is located.longThe timestamp at which the source code file is last modified.getLines(int index) Line-by-line content of the source code file.getLinesBytes(int index) Line-by-line content of the source code file.intLine-by-line content of the source code file.Line-by-line content of the source code file.Methods inherited from interface MessageLiteOrBuilder
isInitialized
-
Method Details
-
getHost
String getHost()The host name on which a source code file is located.
string host = 1;- Returns:
- The host.
-
getHostBytes
ByteString getHostBytes()The host name on which a source code file is located.
string host = 1;- Returns:
- The bytes for host.
-
getFilePath
-
getFilePathBytes
ByteString getFilePathBytes()Path to the source code file.
string file_path = 2;- Returns:
- The bytes for filePath.
-
getLastModified
long getLastModified()The timestamp at which the source code file is last modified.
int64 last_modified = 3;- Returns:
- The lastModified.
-
getBytes
long getBytes()Byte size of the file.
int64 bytes = 4;- Returns:
- The bytes.
-
getLinesList
-
getLinesCount
int getLinesCount()Line-by-line content of the source code file.
repeated string lines = 5;- Returns:
- The count of lines.
-
getLines
Line-by-line content of the source code file.
repeated string lines = 5;- Parameters:
index- The index of the element to return.- Returns:
- The lines at the given index.
-
getLinesBytes
Line-by-line content of the source code file.
repeated string lines = 5;- Parameters:
index- The index of the value to return.- Returns:
- The bytes of the lines at the given index.
-