make/netbeans/common/standard-ide-actions-no-javadoc.ent

changeset 201
e3930187199c
parent 200
e6dafbf35355
child 202
3b2c55b7bd01
     1.1 --- a/make/netbeans/common/standard-ide-actions-no-javadoc.ent	Thu Jan 22 15:45:44 2009 -0800
     1.2 +++ /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.3 @@ -1,161 +0,0 @@
     1.4 -<?xml version="1.0" encoding="UTF-8"?>
     1.5 -<!--
     1.6 - Copyright 2007-2008 Sun Microsystems, Inc.  All Rights Reserved.
     1.7 -
     1.8 - Redistribution and use in source and binary forms, with or without
     1.9 - modification, are permitted provided that the following conditions
    1.10 - are met:
    1.11 -
    1.12 -   - Redistributions of source code must retain the above copyright
    1.13 -     notice, this list of conditions and the following disclaimer.
    1.14 -
    1.15 -   - Redistributions in binary form must reproduce the above copyright
    1.16 -     notice, this list of conditions and the following disclaimer in the
    1.17 -     documentation and/or other materials provided with the distribution.
    1.18 -
    1.19 -   - Neither the name of Sun Microsystems nor the names of its
    1.20 -     contributors may be used to endorse or promote products derived
    1.21 -     from this software without specific prior written permission.
    1.22 -
    1.23 - THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS
    1.24 - IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
    1.25 - THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
    1.26 - PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL THE COPYRIGHT OWNER OR
    1.27 - CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
    1.28 - EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
    1.29 - PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
    1.30 - PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
    1.31 - LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
    1.32 - NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
    1.33 - SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
    1.34 --->
    1.35 -
    1.36 -<!-- 
    1.37 - This file defines the standard actions accepted by langtools projects.
    1.38 - It is normally included as an entity into a project's project.xml file.
    1.39 -
    1.40 - For information on these actions, see
    1.41 -   - NetBeans: Setting Up Projects
    1.42 -     at http://www.netbeans.org/kb/55/using-netbeans/project_setup.html
    1.43 -   - NetBeans: Advanced Freeform Project Configuration
    1.44 -     at http://www.netbeans.org/kb/41/freeform-config.html 
    1.45 --->
    1.46 -
    1.47 -<action name="build">
    1.48 -    <target>build</target>
    1.49 -</action>
    1.50 -
    1.51 -<action name="clean">
    1.52 -    <target>clean</target>
    1.53 -</action>
    1.54 -
    1.55 -<action name="rebuild">
    1.56 -    <target>clean</target>
    1.57 -    <target>build</target>
    1.58 -</action>
    1.59 -
    1.60 -<action name="compile.single">
    1.61 -    <target>compile-single</target>
    1.62 -    <property name="srcdir">${root}/src/share/classes</property>
    1.63 -    <context>
    1.64 -        <property>includes</property>
    1.65 -        <folder>${root}/src/share/classes</folder>
    1.66 -        <pattern>\.java$</pattern>
    1.67 -        <format>relative-path</format>
    1.68 -        <arity>
    1.69 -            <separated-files>,</separated-files>
    1.70 -        </arity>
    1.71 -    </context>
    1.72 -</action>
    1.73 -
    1.74 -<action name="run">
    1.75 -    <target>run</target>
    1.76 -</action>
    1.77 -
    1.78 -<action name="run.single">
    1.79 -    <target>run-single</target>
    1.80 -    <context>
    1.81 -        <property>run.classname</property>
    1.82 -        <folder>${root}/src/share/classes</folder>
    1.83 -        <pattern>\.java$</pattern>
    1.84 -        <format>java-name</format>
    1.85 -        <arity>
    1.86 -            <one-file-only/>
    1.87 -        </arity>
    1.88 -    </context>
    1.89 -</action>
    1.90 -
    1.91 -<!-- 
    1.92 - Note: NetBeans does not appear to support context menu items
    1.93 - on shell scripts :-(
    1.94 --->
    1.95 -
    1.96 -<action name="run.single">
    1.97 -    <target>jtreg</target>
    1.98 -    <context>
    1.99 -        <property>jtreg.tests</property>
   1.100 -        <folder>${root}/test</folder>
   1.101 -        <pattern>\.(java|sh)$</pattern>
   1.102 -        <format>relative-path</format>
   1.103 -        <arity>
   1.104 -            <separated-files>,</separated-files>
   1.105 -        </arity>
   1.106 -    </context>
   1.107 -</action>
   1.108 -
   1.109 -<action name="test">
   1.110 -    <target>jtreg</target>
   1.111 -</action>
   1.112 -
   1.113 -<action name="debug">
   1.114 -    <target>debug-nb</target>
   1.115 -</action>
   1.116 -
   1.117 -<action name="debug.single">
   1.118 -    <target>debug-single-nb</target>
   1.119 -    <context>
   1.120 -        <property>debug.classname</property>
   1.121 -        <folder>${root}/src/share/classes</folder>
   1.122 -        <pattern>\.java$</pattern>
   1.123 -        <format>java-name</format>
   1.124 -        <arity>
   1.125 -            <one-file-only/>
   1.126 -        </arity>
   1.127 -    </context>
   1.128 -</action>
   1.129 -
   1.130 -<!-- 
   1.131 - Note: NetBeans does not appear to support context menu items
   1.132 - on shell scripts :-(
   1.133 --->
   1.134 -
   1.135 -<action name="debug.single">
   1.136 -    <target>debug-jtreg-nb</target>
   1.137 -    <context>
   1.138 -        <property>jtreg.tests</property>
   1.139 -        <folder>${root}/test</folder>
   1.140 -        <pattern>\.(java|sh)$</pattern>
   1.141 -        <format>relative-path</format>
   1.142 -        <arity>
   1.143 -            <one-file-only/>
   1.144 -        </arity>
   1.145 -    </context>
   1.146 -</action>
   1.147 -
   1.148 -<action name="debug.fix">
   1.149 -    <target>debug-fix</target>
   1.150 -    <property name="srcdir">${root}/src/share/classes</property>
   1.151 -    <context>
   1.152 -        <property>class</property>
   1.153 -        <folder>${root}/src/share/classes</folder>
   1.154 -        <pattern>\.java$</pattern>
   1.155 -        <format>relative-path-noext</format>
   1.156 -        <arity>
   1.157 -            <one-file-only/>
   1.158 -        </arity>
   1.159 -    </context>
   1.160 -</action>
   1.161 -
   1.162 -<action name="javadoc">
   1.163 -    <target>-javadoc-nb</target>
   1.164 -</action>

mercurial