/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * This source file is part of SableVM classlib-stubs. * * * * See the file "LICENSE" for the copyright information and for * * the terms and conditions for copying, distribution and * * modification of this source file. * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */ package java.lang; import java.io.Serializable; public final class StackTraceElement extends Object implements Serializable { public StackTraceElement(String declaringClass, String methodName, String fileName, int lineNumber) { } native public String getFileName(); native public int getLineNumber(); native public String getClassName(); native public String getMethodName(); native public boolean isNativeMethod(); native public String toString(); native public boolean equals(Object obj); native public int hashCode(); }