blob: 46c7eff6949fa45712746a235bd99e8bcaa2b9f7 [file] [log] [blame]
// Copyright (c) 2020, the R8 project authors. Please see the AUTHORS file
// for details. All rights reserved. Use of this source code is governed by a
// BSD-style license that can be found in the LICENSE file.
package com.android.tools.r8.retrace;
import com.android.tools.r8.Keep;
import com.android.tools.r8.references.ClassReference;
@Keep
public abstract class StackTraceElementProxy<T, ST extends StackTraceElementProxy<T, ST>> {
public abstract boolean hasClassName();
public abstract boolean hasMethodName();
public abstract boolean hasSourceFile();
public abstract boolean hasLineNumber();
public abstract boolean hasFieldName();
public abstract boolean hasFieldOrReturnType();
public abstract boolean hasMethodArguments();
public abstract ClassReference getClassReference();
public abstract String getMethodName();
public abstract String getSourceFile();
public abstract int getLineNumber();
public abstract String getFieldName();
public abstract String getFieldOrReturnType();
public abstract String getMethodArguments();
public abstract T toRetracedItem(
RetraceStackTraceElementProxy<T, ST> retracedProxy, boolean verbose);
}