jdk/src/jdk.rmic/share/classes/sun/rmi/rmic/Generator.java
author ysuenaga
Fri, 11 Dec 2015 21:58:28 +0900
changeset 34493 c68e0ab807d8
parent 25859 3317bb8137f4
permissions -rw-r--r--
8036003: Add --with-debug-symbols=[none|internal|external|zipped] Reviewed-by: ihse, dholmes
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
     1
/*
5506
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 2
diff changeset
     2
 * Copyright (c) 1998, 2007, Oracle and/or its affiliates. All rights reserved.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
     3
 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
90ce3da70b43 Initial load
duke
parents:
diff changeset
     4
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
     5
 * This code is free software; you can redistribute it and/or modify it
90ce3da70b43 Initial load
duke
parents:
diff changeset
     6
 * under the terms of the GNU General Public License version 2 only, as
5506
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 2
diff changeset
     7
 * published by the Free Software Foundation.  Oracle designates this
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
     8
 * particular file as subject to the "Classpath" exception as provided
5506
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 2
diff changeset
     9
 * by Oracle in the LICENSE file that accompanied this code.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    10
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    11
 * This code is distributed in the hope that it will be useful, but WITHOUT
90ce3da70b43 Initial load
duke
parents:
diff changeset
    12
 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
90ce3da70b43 Initial load
duke
parents:
diff changeset
    13
 * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
90ce3da70b43 Initial load
duke
parents:
diff changeset
    14
 * version 2 for more details (a copy is included in the LICENSE file that
90ce3da70b43 Initial load
duke
parents:
diff changeset
    15
 * accompanied this code).
90ce3da70b43 Initial load
duke
parents:
diff changeset
    16
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    17
 * You should have received a copy of the GNU General Public License version
90ce3da70b43 Initial load
duke
parents:
diff changeset
    18
 * 2 along with this work; if not, write to the Free Software Foundation,
90ce3da70b43 Initial load
duke
parents:
diff changeset
    19
 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    20
 *
5506
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 2
diff changeset
    21
 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 2
diff changeset
    22
 * or visit www.oracle.com if you need additional information or have any
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 2
diff changeset
    23
 * questions.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    24
 */
90ce3da70b43 Initial load
duke
parents:
diff changeset
    25
90ce3da70b43 Initial load
duke
parents:
diff changeset
    26
/*
90ce3da70b43 Initial load
duke
parents:
diff changeset
    27
 * Licensed Materials - Property of IBM
90ce3da70b43 Initial load
duke
parents:
diff changeset
    28
 * RMI-IIOP v1.0
90ce3da70b43 Initial load
duke
parents:
diff changeset
    29
 * Copyright IBM Corp. 1998 1999  All Rights Reserved
90ce3da70b43 Initial load
duke
parents:
diff changeset
    30
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    31
 */
90ce3da70b43 Initial load
duke
parents:
diff changeset
    32
90ce3da70b43 Initial load
duke
parents:
diff changeset
    33
package sun.rmi.rmic;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    34
90ce3da70b43 Initial load
duke
parents:
diff changeset
    35
import java.io.File;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    36
import sun.tools.java.ClassDefinition;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    37
90ce3da70b43 Initial load
duke
parents:
diff changeset
    38
/**
90ce3da70b43 Initial load
duke
parents:
diff changeset
    39
 * Generator defines the protocol for back-end implementations to be added
90ce3da70b43 Initial load
duke
parents:
diff changeset
    40
 * to rmic.  See the rmic.properties file for a description of the format for
90ce3da70b43 Initial load
duke
parents:
diff changeset
    41
 * adding new Generators to rmic.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    42
 * <p>
90ce3da70b43 Initial load
duke
parents:
diff changeset
    43
 * Classes implementing this interface must have a public default constructor
90ce3da70b43 Initial load
duke
parents:
diff changeset
    44
 * which should set any required arguments to their defaults.  When Main
90ce3da70b43 Initial load
duke
parents:
diff changeset
    45
 * encounters a command line argument which maps to a specific Generator
90ce3da70b43 Initial load
duke
parents:
diff changeset
    46
 * subclass, it will instantiate one and call parseArgs(...).  At some later
90ce3da70b43 Initial load
duke
parents:
diff changeset
    47
 * point, Main will invoke the generate(...) method once for _each_ class passed
90ce3da70b43 Initial load
duke
parents:
diff changeset
    48
 * on the command line.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    49
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    50
 * WARNING: The contents of this source file are not part of any
90ce3da70b43 Initial load
duke
parents:
diff changeset
    51
 * supported API.  Code that depends on them does so at its own risk:
90ce3da70b43 Initial load
duke
parents:
diff changeset
    52
 * they are subject to change or removal without notice.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    53
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    54
 * @author      Bryan Atsatt
90ce3da70b43 Initial load
duke
parents:
diff changeset
    55
 */
90ce3da70b43 Initial load
duke
parents:
diff changeset
    56
public interface Generator {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    57
90ce3da70b43 Initial load
duke
parents:
diff changeset
    58
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
    59
     * Examine and consume command line arguments.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    60
     * @param argv The command line arguments. Ignore null
90ce3da70b43 Initial load
duke
parents:
diff changeset
    61
     * and unknown arguments. Set each consumed argument to null.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    62
     * @param main Report any errors using the main.error() methods.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    63
     * @return true if no errors, false otherwise.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    64
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
    65
    public boolean parseArgs(String argv[], Main main);
90ce3da70b43 Initial load
duke
parents:
diff changeset
    66
90ce3da70b43 Initial load
duke
parents:
diff changeset
    67
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
    68
     * Generate output. Any source files created which need compilation should
90ce3da70b43 Initial load
duke
parents:
diff changeset
    69
     * be added to the compiler environment using the addGeneratedFile(File)
90ce3da70b43 Initial load
duke
parents:
diff changeset
    70
     * method.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    71
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    72
     * @param env       The compiler environment
90ce3da70b43 Initial load
duke
parents:
diff changeset
    73
     * @param cdef      The definition for the implementation class or interface from
90ce3da70b43 Initial load
duke
parents:
diff changeset
    74
     *              which to generate output
90ce3da70b43 Initial load
duke
parents:
diff changeset
    75
     * @param destDir   The directory for the root of the package hierarchy
90ce3da70b43 Initial load
duke
parents:
diff changeset
    76
     *                          for generated files. May be null.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    77
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
    78
    public void generate(BatchEnvironment env, ClassDefinition cdef, File destDir);
90ce3da70b43 Initial load
duke
parents:
diff changeset
    79
}