langtools/src/share/classes/com/sun/tools/sjavac/Transformer.java
changeset 24067 76e7b6bbbd85
parent 22448 a85fbad9d687
child 25299 b4a7dcd657f5
equal deleted inserted replaced
24066:1dfb66929538 24067:76e7b6bbbd85
     1 /*
     1 /*
     2  * Copyright (c) 2012, 2013, Oracle and/or its affiliates. All rights reserved.
     2  * Copyright (c) 2012, 2014, 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
    27 
    27 
    28 import java.io.PrintStream;
    28 import java.io.PrintStream;
    29 import java.net.URI;
    29 import java.net.URI;
    30 import java.util.Set;
    30 import java.util.Set;
    31 import java.util.Map;
    31 import java.util.Map;
       
    32 
       
    33 import com.sun.tools.sjavac.options.Options;
    32 
    34 
    33 /**
    35 /**
    34  * The transform interface is used to transform content inside a package, from one form to another.
    36  * The transform interface is used to transform content inside a package, from one form to another.
    35  * Usually the output form is an unpredictable number of output files. (eg class files)
    37  * Usually the output form is an unpredictable number of output files. (eg class files)
    36  * but can also be an unpredictable number of generated source files (eg idl2java)
    38  * but can also be an unpredictable number of generated source files (eg idl2java)
    93                       int numCores,
    95                       int numCores,
    94                       PrintStream out,
    96                       PrintStream out,
    95                       PrintStream err);
    97                       PrintStream err);
    96 
    98 
    97     void setExtra(String e);
    99     void setExtra(String e);
    98     void setExtra(String[] args);
   100     void setExtra(Options args);
    99 }
   101 }