1 package org.codehaus.mojo.natives.javah;
2
3 import java.io.File;
4
5 /**
6 * @deprecated use the JavahExecutable instead since its invokes javah on system path
7 */
8 public class JavahMacOSExecutable
9 extends JavahExecutable
10 {
11 protected String getJavaHExecutable()
12 {
13 return new File( System.getProperty( "java.home" ), "bin/javah" ).getAbsolutePath();
14 }
15
16 }