Java tutorial
public class Main { public static void main(String[] args) { System.out.println("Is Native method ? :"); Thread t = Thread.currentThread(); StackTraceElement e = t.getStackTrace()[0]; System.out.println(e.isNativeMethod()); } }