langtools/src/share/classes/com/sun/tools/javadoc/ToolOption.java
changeset 18898 0eab5f5e3d1d
parent 14543 43edeaf6d0a9
child 22163 3651128c74eb
equal deleted inserted replaced
18672:1d6d1be0a94f 18898:0eab5f5e3d1d
     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         }