Interface DebuggedSourceFileOrBuilder

All Superinterfaces:
MessageLiteOrBuilder, MessageOrBuilder
All Known Implementing Classes:
DebuggedSourceFile, DebuggedSourceFile.Builder

public interface DebuggedSourceFileOrBuilder extends MessageOrBuilder
  • 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

      String getFilePath()
      Path to the source code file.
      
      string file_path = 2;
      Returns:
      The filePath.
    • 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

      List<String> getLinesList()
      Line-by-line content of the source code file.
      
      repeated string lines = 5;
      Returns:
      A list containing the lines.
    • getLinesCount

      int getLinesCount()
      Line-by-line content of the source code file.
      
      repeated string lines = 5;
      Returns:
      The count of lines.
    • getLines

      String getLines(int index)
      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

      ByteString getLinesBytes(int index)
      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.