langtools/make/netbeans/common/standard-ide-actions-no-javadoc.ent
author kvn
Wed, 21 Jan 2009 11:18:38 -0800
changeset 2021 3c26c11fa62e
parent 735 372aa565a221
permissions -rw-r--r--
6794939: assert(_base == OopPtr,"subclass must override cast_to_ptr_type") Summary: Fix the assert in TypeKlassPtr::cast_to_ptr_type(). Reviewed-by: never
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
10
06bc494ca11e Initial load
duke
parents:
diff changeset
     1
<?xml version="1.0" encoding="UTF-8"?>
06bc494ca11e Initial load
duke
parents:
diff changeset
     2
<!--
735
372aa565a221 6719955: Update copyright year
xdono
parents: 727
diff changeset
     3
 Copyright 2007-2008 Sun Microsystems, Inc.  All Rights Reserved.
10
06bc494ca11e Initial load
duke
parents:
diff changeset
     4
06bc494ca11e Initial load
duke
parents:
diff changeset
     5
 Redistribution and use in source and binary forms, with or without
06bc494ca11e Initial load
duke
parents:
diff changeset
     6
 modification, are permitted provided that the following conditions
06bc494ca11e Initial load
duke
parents:
diff changeset
     7
 are met:
06bc494ca11e Initial load
duke
parents:
diff changeset
     8
06bc494ca11e Initial load
duke
parents:
diff changeset
     9
   - Redistributions of source code must retain the above copyright
06bc494ca11e Initial load
duke
parents:
diff changeset
    10
     notice, this list of conditions and the following disclaimer.
06bc494ca11e Initial load
duke
parents:
diff changeset
    11
06bc494ca11e Initial load
duke
parents:
diff changeset
    12
   - Redistributions in binary form must reproduce the above copyright
06bc494ca11e Initial load
duke
parents:
diff changeset
    13
     notice, this list of conditions and the following disclaimer in the
06bc494ca11e Initial load
duke
parents:
diff changeset
    14
     documentation and/or other materials provided with the distribution.
06bc494ca11e Initial load
duke
parents:
diff changeset
    15
06bc494ca11e Initial load
duke
parents:
diff changeset
    16
   - Neither the name of Sun Microsystems nor the names of its
06bc494ca11e Initial load
duke
parents:
diff changeset
    17
     contributors may be used to endorse or promote products derived
06bc494ca11e Initial load
duke
parents:
diff changeset
    18
     from this software without specific prior written permission.
06bc494ca11e Initial load
duke
parents:
diff changeset
    19
06bc494ca11e Initial load
duke
parents:
diff changeset
    20
 THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS
06bc494ca11e Initial load
duke
parents:
diff changeset
    21
 IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
06bc494ca11e Initial load
duke
parents:
diff changeset
    22
 THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
06bc494ca11e Initial load
duke
parents:
diff changeset
    23
 PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL THE COPYRIGHT OWNER OR
06bc494ca11e Initial load
duke
parents:
diff changeset
    24
 CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
06bc494ca11e Initial load
duke
parents:
diff changeset
    25
 EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
06bc494ca11e Initial load
duke
parents:
diff changeset
    26
 PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
06bc494ca11e Initial load
duke
parents:
diff changeset
    27
 PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
06bc494ca11e Initial load
duke
parents:
diff changeset
    28
 LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
06bc494ca11e Initial load
duke
parents:
diff changeset
    29
 NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
06bc494ca11e Initial load
duke
parents:
diff changeset
    30
 SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
06bc494ca11e Initial load
duke
parents:
diff changeset
    31
-->
06bc494ca11e Initial load
duke
parents:
diff changeset
    32
06bc494ca11e Initial load
duke
parents:
diff changeset
    33
<!-- 
06bc494ca11e Initial load
duke
parents:
diff changeset
    34
 This file defines the standard actions accepted by langtools projects.
06bc494ca11e Initial load
duke
parents:
diff changeset
    35
 It is normally included as an entity into a project's project.xml file.
06bc494ca11e Initial load
duke
parents:
diff changeset
    36
06bc494ca11e Initial load
duke
parents:
diff changeset
    37
 For information on these actions, see
06bc494ca11e Initial load
duke
parents:
diff changeset
    38
   - NetBeans: Setting Up Projects
06bc494ca11e Initial load
duke
parents:
diff changeset
    39
     at http://www.netbeans.org/kb/55/using-netbeans/project_setup.html
06bc494ca11e Initial load
duke
parents:
diff changeset
    40
   - NetBeans: Advanced Freeform Project Configuration
06bc494ca11e Initial load
duke
parents:
diff changeset
    41
     at http://www.netbeans.org/kb/41/freeform-config.html 
06bc494ca11e Initial load
duke
parents:
diff changeset
    42
-->
06bc494ca11e Initial load
duke
parents:
diff changeset
    43
06bc494ca11e Initial load
duke
parents:
diff changeset
    44
<action name="build">
06bc494ca11e Initial load
duke
parents:
diff changeset
    45
    <target>build</target>
06bc494ca11e Initial load
duke
parents:
diff changeset
    46
</action>
06bc494ca11e Initial load
duke
parents:
diff changeset
    47
06bc494ca11e Initial load
duke
parents:
diff changeset
    48
<action name="clean">
06bc494ca11e Initial load
duke
parents:
diff changeset
    49
    <target>clean</target>
06bc494ca11e Initial load
duke
parents:
diff changeset
    50
</action>
06bc494ca11e Initial load
duke
parents:
diff changeset
    51
06bc494ca11e Initial load
duke
parents:
diff changeset
    52
<action name="rebuild">
06bc494ca11e Initial load
duke
parents:
diff changeset
    53
    <target>clean</target>
06bc494ca11e Initial load
duke
parents:
diff changeset
    54
    <target>build</target>
06bc494ca11e Initial load
duke
parents:
diff changeset
    55
</action>
06bc494ca11e Initial load
duke
parents:
diff changeset
    56
06bc494ca11e Initial load
duke
parents:
diff changeset
    57
<action name="compile.single">
06bc494ca11e Initial load
duke
parents:
diff changeset
    58
    <target>compile-single</target>
06bc494ca11e Initial load
duke
parents:
diff changeset
    59
    <property name="srcdir">${root}/src/share/classes</property>
06bc494ca11e Initial load
duke
parents:
diff changeset
    60
    <context>
06bc494ca11e Initial load
duke
parents:
diff changeset
    61
        <property>includes</property>
06bc494ca11e Initial load
duke
parents:
diff changeset
    62
        <folder>${root}/src/share/classes</folder>
06bc494ca11e Initial load
duke
parents:
diff changeset
    63
        <pattern>\.java$</pattern>
06bc494ca11e Initial load
duke
parents:
diff changeset
    64
        <format>relative-path</format>
06bc494ca11e Initial load
duke
parents:
diff changeset
    65
        <arity>
06bc494ca11e Initial load
duke
parents:
diff changeset
    66
            <separated-files>,</separated-files>
06bc494ca11e Initial load
duke
parents:
diff changeset
    67
        </arity>
06bc494ca11e Initial load
duke
parents:
diff changeset
    68
    </context>
06bc494ca11e Initial load
duke
parents:
diff changeset
    69
</action>
06bc494ca11e Initial load
duke
parents:
diff changeset
    70
06bc494ca11e Initial load
duke
parents:
diff changeset
    71
<action name="run">
06bc494ca11e Initial load
duke
parents:
diff changeset
    72
    <target>run</target>
06bc494ca11e Initial load
duke
parents:
diff changeset
    73
</action>
06bc494ca11e Initial load
duke
parents:
diff changeset
    74
06bc494ca11e Initial load
duke
parents:
diff changeset
    75
<action name="run.single">
06bc494ca11e Initial load
duke
parents:
diff changeset
    76
    <target>run-single</target>
06bc494ca11e Initial load
duke
parents:
diff changeset
    77
    <context>
06bc494ca11e Initial load
duke
parents:
diff changeset
    78
        <property>run.classname</property>
06bc494ca11e Initial load
duke
parents:
diff changeset
    79
        <folder>${root}/src/share/classes</folder>
06bc494ca11e Initial load
duke
parents:
diff changeset
    80
        <pattern>\.java$</pattern>
06bc494ca11e Initial load
duke
parents:
diff changeset
    81
        <format>java-name</format>
06bc494ca11e Initial load
duke
parents:
diff changeset
    82
        <arity>
06bc494ca11e Initial load
duke
parents:
diff changeset
    83
            <one-file-only/>
06bc494ca11e Initial load
duke
parents:
diff changeset
    84
        </arity>
06bc494ca11e Initial load
duke
parents:
diff changeset
    85
    </context>
06bc494ca11e Initial load
duke
parents:
diff changeset
    86
</action>
06bc494ca11e Initial load
duke
parents:
diff changeset
    87
06bc494ca11e Initial load
duke
parents:
diff changeset
    88
<!-- 
06bc494ca11e Initial load
duke
parents:
diff changeset
    89
 Note: NetBeans does not appear to support context menu items
06bc494ca11e Initial load
duke
parents:
diff changeset
    90
 on shell scripts :-(
06bc494ca11e Initial load
duke
parents:
diff changeset
    91
-->
06bc494ca11e Initial load
duke
parents:
diff changeset
    92
06bc494ca11e Initial load
duke
parents:
diff changeset
    93
<action name="run.single">
06bc494ca11e Initial load
duke
parents:
diff changeset
    94
    <target>jtreg</target>
06bc494ca11e Initial load
duke
parents:
diff changeset
    95
    <context>
06bc494ca11e Initial load
duke
parents:
diff changeset
    96
        <property>jtreg.tests</property>
06bc494ca11e Initial load
duke
parents:
diff changeset
    97
        <folder>${root}/test</folder>
06bc494ca11e Initial load
duke
parents:
diff changeset
    98
        <pattern>\.(java|sh)$</pattern>
06bc494ca11e Initial load
duke
parents:
diff changeset
    99
        <format>relative-path</format>
06bc494ca11e Initial load
duke
parents:
diff changeset
   100
        <arity>
06bc494ca11e Initial load
duke
parents:
diff changeset
   101
            <separated-files>,</separated-files>
06bc494ca11e Initial load
duke
parents:
diff changeset
   102
        </arity>
06bc494ca11e Initial load
duke
parents:
diff changeset
   103
    </context>
06bc494ca11e Initial load
duke
parents:
diff changeset
   104
</action>
06bc494ca11e Initial load
duke
parents:
diff changeset
   105
06bc494ca11e Initial load
duke
parents:
diff changeset
   106
<action name="test">
06bc494ca11e Initial load
duke
parents:
diff changeset
   107
    <target>jtreg</target>
06bc494ca11e Initial load
duke
parents:
diff changeset
   108
</action>
06bc494ca11e Initial load
duke
parents:
diff changeset
   109
06bc494ca11e Initial load
duke
parents:
diff changeset
   110
<action name="debug">
06bc494ca11e Initial load
duke
parents:
diff changeset
   111
    <target>debug-nb</target>
06bc494ca11e Initial load
duke
parents:
diff changeset
   112
</action>
06bc494ca11e Initial load
duke
parents:
diff changeset
   113
06bc494ca11e Initial load
duke
parents:
diff changeset
   114
<action name="debug.single">
06bc494ca11e Initial load
duke
parents:
diff changeset
   115
    <target>debug-single-nb</target>
06bc494ca11e Initial load
duke
parents:
diff changeset
   116
    <context>
06bc494ca11e Initial load
duke
parents:
diff changeset
   117
        <property>debug.classname</property>
06bc494ca11e Initial load
duke
parents:
diff changeset
   118
        <folder>${root}/src/share/classes</folder>
06bc494ca11e Initial load
duke
parents:
diff changeset
   119
        <pattern>\.java$</pattern>
06bc494ca11e Initial load
duke
parents:
diff changeset
   120
        <format>java-name</format>
06bc494ca11e Initial load
duke
parents:
diff changeset
   121
        <arity>
06bc494ca11e Initial load
duke
parents:
diff changeset
   122
            <one-file-only/>
06bc494ca11e Initial load
duke
parents:
diff changeset
   123
        </arity>
06bc494ca11e Initial load
duke
parents:
diff changeset
   124
    </context>
06bc494ca11e Initial load
duke
parents:
diff changeset
   125
</action>
06bc494ca11e Initial load
duke
parents:
diff changeset
   126
06bc494ca11e Initial load
duke
parents:
diff changeset
   127
<!-- 
06bc494ca11e Initial load
duke
parents:
diff changeset
   128
 Note: NetBeans does not appear to support context menu items
06bc494ca11e Initial load
duke
parents:
diff changeset
   129
 on shell scripts :-(
06bc494ca11e Initial load
duke
parents:
diff changeset
   130
-->
06bc494ca11e Initial load
duke
parents:
diff changeset
   131
06bc494ca11e Initial load
duke
parents:
diff changeset
   132
<action name="debug.single">
06bc494ca11e Initial load
duke
parents:
diff changeset
   133
    <target>debug-jtreg-nb</target>
06bc494ca11e Initial load
duke
parents:
diff changeset
   134
    <context>
06bc494ca11e Initial load
duke
parents:
diff changeset
   135
        <property>jtreg.tests</property>
06bc494ca11e Initial load
duke
parents:
diff changeset
   136
        <folder>${root}/test</folder>
06bc494ca11e Initial load
duke
parents:
diff changeset
   137
        <pattern>\.(java|sh)$</pattern>
06bc494ca11e Initial load
duke
parents:
diff changeset
   138
        <format>relative-path</format>
06bc494ca11e Initial load
duke
parents:
diff changeset
   139
        <arity>
06bc494ca11e Initial load
duke
parents:
diff changeset
   140
            <one-file-only/>
06bc494ca11e Initial load
duke
parents:
diff changeset
   141
        </arity>
06bc494ca11e Initial load
duke
parents:
diff changeset
   142
    </context>
06bc494ca11e Initial load
duke
parents:
diff changeset
   143
</action>
06bc494ca11e Initial load
duke
parents:
diff changeset
   144
06bc494ca11e Initial load
duke
parents:
diff changeset
   145
<action name="debug.fix">
06bc494ca11e Initial load
duke
parents:
diff changeset
   146
    <target>debug-fix</target>
06bc494ca11e Initial load
duke
parents:
diff changeset
   147
    <property name="srcdir">${root}/src/share/classes</property>
06bc494ca11e Initial load
duke
parents:
diff changeset
   148
    <context>
06bc494ca11e Initial load
duke
parents:
diff changeset
   149
        <property>class</property>
06bc494ca11e Initial load
duke
parents:
diff changeset
   150
        <folder>${root}/src/share/classes</folder>
06bc494ca11e Initial load
duke
parents:
diff changeset
   151
        <pattern>\.java$</pattern>
06bc494ca11e Initial load
duke
parents:
diff changeset
   152
        <format>relative-path-noext</format>
06bc494ca11e Initial load
duke
parents:
diff changeset
   153
        <arity>
06bc494ca11e Initial load
duke
parents:
diff changeset
   154
            <one-file-only/>
06bc494ca11e Initial load
duke
parents:
diff changeset
   155
        </arity>
06bc494ca11e Initial load
duke
parents:
diff changeset
   156
    </context>
06bc494ca11e Initial load
duke
parents:
diff changeset
   157
</action>
06bc494ca11e Initial load
duke
parents:
diff changeset
   158
06bc494ca11e Initial load
duke
parents:
diff changeset
   159
<action name="javadoc">
727
cb50c1ae7bab 4075303: Use javap to enquire aboput a specific inner class
jjg
parents: 10
diff changeset
   160
    <target>-javadoc-nb</target>
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   161
</action>