src/share/classes/com/sun/tools/javadoc/ToolOption.java

changeset 1885
d6158f8d7235
parent 1411
467f4f754368
child 2525
2eb010b6cb22
equal deleted inserted replaced
1879:3b4f92a3797f 1885:d6158f8d7235
1 /* 1 /*
2 * Copyright (c) 2012, Oracle and/or its affiliates. All rights reserved. 2 * Copyright (c) 2012, 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
54 public void process(Helper helper, String arg) { 54 public void process(Helper helper, String arg) {
55 helper.setCompilerOpt(opt, arg); 55 helper.setCompilerOpt(opt, arg);
56 } 56 }
57 }, 57 },
58 58
59 CP("-cp", true) {
60 @Override
61 public void process(Helper helper, String arg) {
62 helper.setCompilerOpt(opt, arg);
63 }
64 },
65
59 EXTDIRS("-extdirs", true) { 66 EXTDIRS("-extdirs", true) {
60 @Override 67 @Override
61 public void process(Helper helper, String arg) { 68 public void process(Helper helper, String arg) {
62 helper.setCompilerOpt(opt, arg); 69 helper.setCompilerOpt(opt, arg);
63 } 70 }

mercurial