All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.sqldroid.DebugPrinter Maven / Gradle / Ivy

The newest version!
package org.sqldroid;

/**
 * thanks to 
 * http://blog.taragana.com/index.php/archive/core-java-how-to-get-java-source-code-line-number-file-name-in-code/!
 * 
 * @author klm
 *
 */
public class DebugPrinter {

	// original tutorial suggests items [2]
	// from arrays, but [3] works for android.
	// there you go..
	
	/** Get the current line number.
	 * @return int - Current line number.
	 */
	public static int getLineNumber() {
	    return Thread.currentThread().getStackTrace()[3].getLineNumber();
	}

	public static String getFileName() {
		return	Thread.currentThread().getStackTrace()[3].getClassName() 
		 + " (" + Thread.currentThread().getStackTrace()[3].getMethodName() + ")";
	}
	
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy