src/share/classes/com/sun/tools/javah/JavahTask.java

changeset 1862
a47e28759666
parent 1442
fcf89720ae71
child 1885
d6158f8d7235
equal deleted inserted replaced
1861:dcc6a52bf363 1862:a47e28759666
1 /* 1 /*
2 * Copyright (c) 2002, 2012, Oracle and/or its affiliates. All rights reserved. 2 * Copyright (c) 2002, 2013, Oracle and/or its affiliates. All rights reserved.
3 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. 3 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
4 * 4 *
5 * This code is free software; you can redistribute it and/or modify it 5 * This code is free software; you can redistribute it and/or modify it
6 * under the terms of the GNU General Public License version 2 only, as 6 * under the terms of the GNU General Public License version 2 only, as
7 * published by the Free Software Foundation. Oracle designates this 7 * published by the Free Software Foundation. Oracle designates this
218 void process(JavahTask task, String opt, String arg) { 218 void process(JavahTask task, String opt, String arg) {
219 // we're already using the new javah 219 // we're already using the new javah
220 } 220 }
221 }, 221 },
222 222
223 new HiddenOption(false, "-old") {
224 void process(JavahTask task, String opt, String arg) {
225 task.old = true;
226 }
227 },
228
229 new HiddenOption(false, "-llni", "-Xllni") { 223 new HiddenOption(false, "-llni", "-Xllni") {
230 void process(JavahTask task, String opt, String arg) { 224 void process(JavahTask task, String opt, String arg) {
231 task.llni = true; 225 task.llni = true;
232 } 226 }
233 }, 227 },
661 boolean fullVersion; 655 boolean fullVersion;
662 boolean jni; 656 boolean jni;
663 boolean llni; 657 boolean llni;
664 boolean doubleAlign; 658 boolean doubleAlign;
665 boolean force; 659 boolean force;
666 boolean old;
667 Set<String> javac_extras = new LinkedHashSet<String>(); 660 Set<String> javac_extras = new LinkedHashSet<String>();
668 661
669 PrintWriter log; 662 PrintWriter log;
670 JavaFileManager fileManager; 663 JavaFileManager fileManager;
671 DiagnosticListener<? super JavaFileObject> diagnosticListener; 664 DiagnosticListener<? super JavaFileObject> diagnosticListener;

mercurial