com.android.ddmlib
Class NativeStackCallInfo

java.lang.Object
  extended by com.android.ddmlib.NativeStackCallInfo

public final class NativeStackCallInfo
extends java.lang.Object

Represents a stack call. This is used to return all of the call information as one object.


Constructor Summary
NativeStackCallInfo(java.lang.String lib, java.lang.String method, java.lang.String sourceFile)
          Basic constructor with library, method, and sourcefile information
 
Method Summary
 java.lang.String getLibraryName()
          Returns the name of the library name.
 int getLineNumber()
          Returns the line number, or -1 if unknown.
 java.lang.String getMethodName()
          Returns the name of the method.
 java.lang.String getSourceFile()
          Returns the name of the source file.
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

NativeStackCallInfo

public NativeStackCallInfo(java.lang.String lib,
                           java.lang.String method,
                           java.lang.String sourceFile)
Basic constructor with library, method, and sourcefile information

Parameters:
lib - The name of the library
method - the name of the method
sourceFile - the name of the source file and the line number as "[sourcefile]:[fileNumber]"
Method Detail

getLibraryName

public java.lang.String getLibraryName()
Returns the name of the library name.


getMethodName

public java.lang.String getMethodName()
Returns the name of the method.


getSourceFile

public java.lang.String getSourceFile()
Returns the name of the source file.


getLineNumber

public int getLineNumber()
Returns the line number, or -1 if unknown.



Copyright © 2008-2011. All Rights Reserved.