com.google.devtools.clouddebugger.v2.StackFrameOrBuilder Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of proto-google-cloud-debugger-client-v2 Show documentation
Show all versions of proto-google-cloud-debugger-client-v2 Show documentation
Proto library for google-cloud-debugger-client
/*
* Copyright 2024 Google LLC
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* https://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
// Generated by the protocol buffer compiler. DO NOT EDIT!
// source: google/devtools/clouddebugger/v2/data.proto
// Protobuf Java Version: 3.25.5
package com.google.devtools.clouddebugger.v2;
public interface StackFrameOrBuilder
extends
// @@protoc_insertion_point(interface_extends:google.devtools.clouddebugger.v2.StackFrame)
com.google.protobuf.MessageOrBuilder {
/**
*
*
*
* Demangled function name at the call site.
*
*
* string function = 1;
*
* @return The function.
*/
java.lang.String getFunction();
/**
*
*
*
* Demangled function name at the call site.
*
*
* string function = 1;
*
* @return The bytes for function.
*/
com.google.protobuf.ByteString getFunctionBytes();
/**
*
*
*
* Source location of the call site.
*
*
* .google.devtools.clouddebugger.v2.SourceLocation location = 2;
*
* @return Whether the location field is set.
*/
boolean hasLocation();
/**
*
*
*
* Source location of the call site.
*
*
* .google.devtools.clouddebugger.v2.SourceLocation location = 2;
*
* @return The location.
*/
com.google.devtools.clouddebugger.v2.SourceLocation getLocation();
/**
*
*
*
* Source location of the call site.
*
*
* .google.devtools.clouddebugger.v2.SourceLocation location = 2;
*/
com.google.devtools.clouddebugger.v2.SourceLocationOrBuilder getLocationOrBuilder();
/**
*
*
*
* Set of arguments passed to this function.
* Note that this might not be populated for all stack frames.
*
*
* repeated .google.devtools.clouddebugger.v2.Variable arguments = 3;
*/
java.util.List getArgumentsList();
/**
*
*
*
* Set of arguments passed to this function.
* Note that this might not be populated for all stack frames.
*
*
* repeated .google.devtools.clouddebugger.v2.Variable arguments = 3;
*/
com.google.devtools.clouddebugger.v2.Variable getArguments(int index);
/**
*
*
*
* Set of arguments passed to this function.
* Note that this might not be populated for all stack frames.
*
*
* repeated .google.devtools.clouddebugger.v2.Variable arguments = 3;
*/
int getArgumentsCount();
/**
*
*
*
* Set of arguments passed to this function.
* Note that this might not be populated for all stack frames.
*
*
* repeated .google.devtools.clouddebugger.v2.Variable arguments = 3;
*/
java.util.List extends com.google.devtools.clouddebugger.v2.VariableOrBuilder>
getArgumentsOrBuilderList();
/**
*
*
*
* Set of arguments passed to this function.
* Note that this might not be populated for all stack frames.
*
*
* repeated .google.devtools.clouddebugger.v2.Variable arguments = 3;
*/
com.google.devtools.clouddebugger.v2.VariableOrBuilder getArgumentsOrBuilder(int index);
/**
*
*
*
* Set of local variables at the stack frame location.
* Note that this might not be populated for all stack frames.
*
*
* repeated .google.devtools.clouddebugger.v2.Variable locals = 4;
*/
java.util.List getLocalsList();
/**
*
*
*
* Set of local variables at the stack frame location.
* Note that this might not be populated for all stack frames.
*
*
* repeated .google.devtools.clouddebugger.v2.Variable locals = 4;
*/
com.google.devtools.clouddebugger.v2.Variable getLocals(int index);
/**
*
*
*
* Set of local variables at the stack frame location.
* Note that this might not be populated for all stack frames.
*
*
* repeated .google.devtools.clouddebugger.v2.Variable locals = 4;
*/
int getLocalsCount();
/**
*
*
*
* Set of local variables at the stack frame location.
* Note that this might not be populated for all stack frames.
*
*
* repeated .google.devtools.clouddebugger.v2.Variable locals = 4;
*/
java.util.List extends com.google.devtools.clouddebugger.v2.VariableOrBuilder>
getLocalsOrBuilderList();
/**
*
*
*
* Set of local variables at the stack frame location.
* Note that this might not be populated for all stack frames.
*
*
* repeated .google.devtools.clouddebugger.v2.Variable locals = 4;
*/
com.google.devtools.clouddebugger.v2.VariableOrBuilder getLocalsOrBuilder(int index);
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy