Changeset 278 for trunk/openjdk/langtools/make
- Timestamp:
- Mar 26, 2011, 8:39:20 PM (14 years ago)
- Location:
- trunk/openjdk
- Files:
-
- 7 deleted
- 21 edited
- 8 copied
Legend:
- Unmodified
- Added
- Removed
-
trunk/openjdk
- Property svn:ignore
-
old new 1 1 build 2 build-product-release
-
-
Property svn:mergeinfo
set to
/branches/vendor/oracle/openjdk6/b22 merged eligible /branches/vendor/oracle/openjdk6/current merged eligible
- Property svn:ignore
-
trunk/openjdk/langtools/make/Makefile
r173 r278 1 1 # 2 # Copyright 2007 Sun Microsystems, Inc. All Rights Reserved.2 # Copyright (c) 2007, 2010, Oracle and/or its affiliates. All rights reserved. 3 3 # DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. 4 4 # 5 5 # This code is free software; you can redistribute it and/or modify it 6 6 # under the terms of the GNU General Public License version 2 only, as 7 # published by the Free Software Foundation. Sundesignates this7 # published by the Free Software Foundation. Oracle designates this 8 8 # particular file as subject to the "Classpath" exception as provided 9 # by Sunin the LICENSE file that accompanied this code.9 # by Oracle in the LICENSE file that accompanied this code. 10 10 # 11 11 # This code is distributed in the hope that it will be useful, but WITHOUT … … 19 19 # Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. 20 20 # 21 # Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa Clara,22 # CA 95054 USA or visit www.sun.com if you need additional information or23 # have anyquestions.21 # Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA 22 # or visit www.oracle.com if you need additional information or have any 23 # questions. 24 24 # 25 25 … … 27 27 28 28 # 29 # On Solaris, the 'make' utility from Sunwill not work with these makefiles.30 # This little rule is only understood by S un's make, and is harmless31 # when seen by the GNU make tool. If using S un's make, this causes the29 # On Solaris, the standard 'make' utility will not work with these makefiles. 30 # This little rule is only understood by Solaris make, and is harmless 31 # when seen by the GNU make tool. If using Solaris make, this causes the 32 32 # make command to fail. 33 33 # … … 41 41 SYSTEM_UNAME := $(shell uname) 42 42 43 # Where is unwanted output to be delivered? 44 # On Windows, MKS uses the special file "NUL", cygwin uses the customary unix file. 43 45 ifeq ($(SYSTEM_UNAME), Windows_NT) 44 46 DEV_NULL = NUL 45 47 else 48 DEV_NULL = /dev/null 49 endif 50 46 51 ifneq (,$(findstring CYGWIN,$(SYSTEM_UNAME))) 47 DEV_NULL = NUL48 52 USING_CYGWIN = true 49 else50 DEV_NULL = /dev/null51 endif52 53 endif 53 54 … … 202 203 #------------------------------------------------------------------- 203 204 # 204 # Targets for Sun's internal JPRT build system205 # Targets for Oracle's internal JPRT build system 205 206 206 207 CD = cd -
trunk/openjdk/langtools/make/Makefile-classic
r2 r278 1 1 # 2 # Copyright 2007 Sun Microsystems, Inc. All Rights Reserved.2 # Copyright (c) 2007, Oracle and/or its affiliates. All rights reserved. 3 3 # DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. 4 4 # 5 5 # This code is free software; you can redistribute it and/or modify it 6 6 # under the terms of the GNU General Public License version 2 only, as 7 # published by the Free Software Foundation. Sundesignates this7 # published by the Free Software Foundation. Oracle designates this 8 8 # particular file as subject to the "Classpath" exception as provided 9 # by Sunin the LICENSE file that accompanied this code.9 # by Oracle in the LICENSE file that accompanied this code. 10 10 # 11 11 # This code is distributed in the hope that it will be useful, but WITHOUT … … 19 19 # Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. 20 20 # 21 # Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa Clara,22 # CA 95054 USA or visit www.sun.com if you need additional information or23 # have anyquestions.21 # Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA 22 # or visit www.oracle.com if you need additional information or have any 23 # questions. 24 24 # 25 25 … … 29 29 30 30 # 31 # On Solaris, the 'make' utility from Sunwill not work with these makefiles.32 # This little rule is only understood by S un's make, and is harmless33 # when seen by the GNU make tool. If using S un's make, this causes the31 # On Solaris, the standard 'make' utility will not work with these makefiles. 32 # This little rule is only understood by Solaris make, and is harmless 33 # when seen by the GNU make tool. If using Solaris make, this causes the 34 34 # make command to fail. 35 35 # -
trunk/openjdk/langtools/make/build.properties
r2 r278 1 1 # 2 # Copyright 2007 Sun Microsystems, Inc. All Rights Reserved.2 # Copyright (c) 2007, Oracle and/or its affiliates. All rights reserved. 3 3 # DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. 4 4 # 5 5 # This code is free software; you can redistribute it and/or modify it 6 6 # under the terms of the GNU General Public License version 2 only, as 7 # published by the Free Software Foundation. Sundesignates this7 # published by the Free Software Foundation. Oracle designates this 8 8 # particular file as subject to the "Classpath" exception as provided 9 # by Sunin the LICENSE file that accompanied this code.9 # by Oracle in the LICENSE file that accompanied this code. 10 10 # 11 11 # This code is distributed in the hope that it will be useful, but WITHOUT … … 19 19 # Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. 20 20 # 21 # Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa Clara,22 # CA 95054 USA or visit www.sun.com if you need additional information or23 # have anyquestions.21 # Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA 22 # or visit www.oracle.com if you need additional information or have any 23 # questions. 24 24 # 25 25 -
trunk/openjdk/langtools/make/build.xml
r21 r278 1 1 <?xml version="1.0" encoding="UTF-8"?> 2 2 <!-- 3 Copyright 2007-2009 Sun Microsystems, Inc. All Rights Reserved.3 Copyright (c) 2007, 2010, Oracle and/or its affiliates. All rights reserved. 4 4 DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. 5 5 6 6 This code is free software; you can redistribute it and/or modify it 7 7 under the terms of the GNU General Public License version 2 only, as 8 published by the Free Software Foundation. Sundesignates this8 published by the Free Software Foundation. Oracle designates this 9 9 particular file as subject to the "Classpath" exception as provided 10 by Sunin the LICENSE file that accompanied this code.10 by Oracle in the LICENSE file that accompanied this code. 11 11 12 12 This code is distributed in the hope that it will be useful, but WITHOUT … … 20 20 Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. 21 21 22 Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa Clara,23 CA 95054 USA or visit www.sun.com if you need additional information or24 have anyquestions.22 Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA 23 or visit www.oracle.com if you need additional information or have any 24 questions. 25 25 --> 26 26 … … 666 666 <attribute name="jdk" default="${target.java.home}"/> 667 667 <attribute name="samevm" default="true"/> 668 <attribute name="verbose" default=" summary"/>669 <attribute name="options" default=" "/>668 <attribute name="verbose" default="${default.jtreg.verbose}"/> 669 <attribute name="options" default="${other.jtreg.options}"/> 670 670 <attribute name="keywords" default="-keywords:!ignore"/> 671 671 <attribute name="jpda.jvmargs" default=""/> 672 672 <sequential> 673 <property name="coverage.options" value=""/> <!-- default --> 674 <property name="coverage.classpath" value=""/> <!-- default --> 673 <property name="coverage.options" value=""/> <!-- default --> 674 <property name="coverage.classpath" value=""/> <!-- default --> 675 <property name="default.jtreg.verbose" value="summary"/> <!-- default --> 676 <property name="other.jtreg.options" value=""/> <!-- default --> 675 677 <jtreg 676 678 dir="${test.dir}" -
trunk/openjdk/langtools/make/jprt.properties
r2 r278 1 1 # 2 # Copyright 2006-2009 Sun Microsystems, Inc. All Rights Reserved.2 # Copyright (c) 2006, 2010, Oracle and/or its affiliates. All rights reserved. 3 3 # DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. 4 4 # 5 5 # This code is free software; you can redistribute it and/or modify it 6 6 # under the terms of the GNU General Public License version 2 only, as 7 # published by the Free Software Foundation. Sundesignates this7 # published by the Free Software Foundation. Oracle designates this 8 8 # particular file as subject to the "Classpath" exception as provided 9 # by Sunin the LICENSE file that accompanied this code.9 # by Oracle in the LICENSE file that accompanied this code. 10 10 # 11 11 # This code is distributed in the hope that it will be useful, but WITHOUT … … 19 19 # Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. 20 20 # 21 # Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa Clara,22 # CA 95054 USA or visit www.sun.com if you need additional information or23 # have anyquestions.21 # Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA 22 # or visit www.oracle.com if you need additional information or have any 23 # questions. 24 24 # 25 25 … … 29 29 # Specific platform list 30 30 jprt.build.platforms=\ 31 solaris_sparc_5. 8,\32 solaris_sparcv9_5. 8,\33 solaris_i586_5. 8,\31 solaris_sparc_5.10,\ 32 solaris_sparcv9_5.10,\ 33 solaris_i586_5.10,\ 34 34 solaris_x64_5.10,\ 35 35 linux_i586_2.6,\ … … 41 41 jprt.build.flavors=product 42 42 43 # Explicitly designate what the 32bit match is for the 64bit build44 jprt.solaris_sparcv9.build.platform.match32=solaris_sparc_5.845 jprt.solaris_sparcv9_5.8.build.platform.match32=solaris_sparc_5.846 jprt.solaris_sparcv9_5.10.build.platform.match32=solaris_sparc_5.847 jprt.solaris_x64.build.platform.match32=solaris_i586_5.848 jprt.solaris_x64_5.8.build.platform.match32=solaris_i586_5.849 jprt.solaris_x64_5.10.build.platform.match32=solaris_i586_5.850 51 43 # Standard list of jprt test targets for this workspace 52 44 jprt.test.targets= -
trunk/openjdk/langtools/make/netbeans/README
r2 r278 1 Working on the "langtools" workspace using NetBeans.1 Using NetBeans to work on the langtools repository. 2 2 3 This directory (make/netbeans) contains NetBeans projects that 4 allow you to work on the various tools using the NetBeans IDE. 3 Netbeans 6.0 or later is recommended. 5 4 6 NetBeans 5.0 or later is required and sufficient to use these 7 projects. This is different from other projects in OpenJDK, 8 which requires version 6.0 or later.5 The "langtools" project in this directory allows you to 6 edit, run, test and debug the tools in the OpenJDK langtools 7 repository. 9 8 10 The following projects are provided: 9 The repository contains a number of tools: 10 apt, javac, javadoc and its doclets, javah and javap. 11 11 12 compiler: for working on the compiler, javac 13 javadoc: for working on the documentation tool, javadoc 14 doclets: for working on the standard doclets used by the 15 documentation tool, javadoc 16 javah: for working on the C header tool, javah 17 javap: for working on the disassembler, javap 18 apt: for working on the annotation processing tool, apt. 19 Note that this is just provided for completeness; 20 the tool has been superceded by new features in javac, 21 and work on apt itself is discouraged. 12 Build Properties. 22 13 23 However, any tool can be worked on from any project; the only difference 24 between these projects is the behavior of the standard NetBeans actions, 25 so that "Build" in the compiler project will build the compiler, etc. 14 To build this repository, you must set some properties for Ant. 15 You can set these properties in a number of ways: 26 16 17 - Set the properties in the Properties panel under Tool> Options> Ant. 18 Properties set this way will apply globally to all the langtools 19 repositories you may be working on. 27 20 21 - Create a file build.properties in the root directory of a 22 langtools repository, and set the properties in that file. 23 These properties will be specific to that repository. 28 24 25 To build the repository, at a minimum you must set the "boot.java.home" 26 property. To run the tools, you must also set "target.java.home". To 27 run the regression tests, you must set "jtreg.home". 28 29 By default, the build and test targets will build and test all 30 of these tools. The run and debug targets will prompt you for the 31 name of a tool to execute. 32 33 As an alternative, you can focus on a single tool. When you do 34 this, you will still see all the source code for all the tools, 35 but the various Ant targets will now be focussed on the selected tool. 36 To focus on a tool, bring up the context menu on the "langtools" 37 project (i.e. right-click on the project) and select "Select Tool". 38 This brings up a dialog which allows you to specify which tool you 39 wish to work on, and the arguments to use if and when you run it. -
trunk/openjdk/langtools/make/test/HelloWorld.java
r2 r278 1 1 /* 2 * Copyright 2007 Sun Microsystems, Inc. All Rights Reserved.2 * Copyright (c) 2007, Oracle and/or its affiliates. All rights reserved. 3 3 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. 4 4 * 5 5 * This code is free software; you can redistribute it and/or modify it 6 6 * under the terms of the GNU General Public License version 2 only, as 7 * published by the Free Software Foundation. Sundesignates this7 * published by the Free Software Foundation. Oracle designates this 8 8 * particular file as subject to the "Classpath" exception as provided 9 * by Sunin the LICENSE file that accompanied this code.9 * by Oracle in the LICENSE file that accompanied this code. 10 10 * 11 11 * This code is distributed in the hope that it will be useful, but WITHOUT … … 19 19 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. 20 20 * 21 * Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa Clara,22 * CA 95054 USA or visit www.sun.com if you need additional information or23 * have anyquestions.21 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA 22 * or visit www.oracle.com if you need additional information or have any 23 * questions. 24 24 */ 25 25 -
trunk/openjdk/langtools/make/test/bootstrap/javac.sh
r2 r278 2 2 3 3 # 4 # Copyright 2007 Sun Microsystems, Inc. All Rights Reserved.4 # Copyright (c) 2007, Oracle and/or its affiliates. All rights reserved. 5 5 # DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. 6 6 # … … 19 19 # Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. 20 20 # 21 # Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa Clara,22 # CA 95054 USA or visit www.sun.com if you need additional information or23 # have anyquestions.21 # Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA 22 # or visit www.oracle.com if you need additional information or have any 23 # questions. 24 24 # 25 25 -
trunk/openjdk/langtools/make/test/bootstrap/javadoc.sh
r2 r278 2 2 3 3 # 4 # Copyright 2007 Sun Microsystems, Inc. All Rights Reserved.4 # Copyright (c) 2007, Oracle and/or its affiliates. All rights reserved. 5 5 # DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. 6 6 # … … 19 19 # Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. 20 20 # 21 # Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa Clara,22 # CA 95054 USA or visit www.sun.com if you need additional information or23 # have anyquestions.21 # Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA 22 # or visit www.oracle.com if you need additional information or have any 23 # questions. 24 24 # 25 25 -
trunk/openjdk/langtools/make/test/bootstrap/javah.sh
r2 r278 2 2 3 3 # 4 # Copyright 2002-2007 Sun Microsystems, Inc. All Rights Reserved.4 # Copyright (c) 2002, 2007, Oracle and/or its affiliates. All rights reserved. 5 5 # DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. 6 6 # … … 19 19 # Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. 20 20 # 21 # Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa Clara,22 # CA 95054 USA or visit www.sun.com if you need additional information or23 # have anyquestions.21 # Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA 22 # or visit www.oracle.com if you need additional information or have any 23 # questions. 24 24 # 25 25 -
trunk/openjdk/langtools/make/test/contents.sh
r2 r278 2 2 3 3 # 4 # Copyright 2007 Sun Microsystems, Inc. All Rights Reserved.4 # Copyright (c) 2007, Oracle and/or its affiliates. All rights reserved. 5 5 # DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. 6 6 # … … 19 19 # Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. 20 20 # 21 # Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa Clara,22 # CA 95054 USA or visit www.sun.com if you need additional information or23 # have anyquestions.21 # Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA 22 # or visit www.oracle.com if you need additional information or have any 23 # questions. 24 24 # 25 25 -
trunk/openjdk/langtools/make/test/lib/apt.sh
r2 r278 2 2 3 3 # 4 # Copyright 2002-2007 Sun Microsystems, Inc. All Rights Reserved.4 # Copyright (c) 2002, 2007, Oracle and/or its affiliates. All rights reserved. 5 5 # DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. 6 6 # … … 19 19 # Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. 20 20 # 21 # Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa Clara,22 # CA 95054 USA or visit www.sun.com if you need additional information or23 # have anyquestions.21 # Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA 22 # or visit www.oracle.com if you need additional information or have any 23 # questions. 24 24 # 25 25 -
trunk/openjdk/langtools/make/test/lib/classes.sh
r2 r278 2 2 3 3 # 4 # Copyright 2007 Sun Microsystems, Inc. All Rights Reserved.4 # Copyright (c) 2007, Oracle and/or its affiliates. All rights reserved. 5 5 # DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. 6 6 # … … 19 19 # Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. 20 20 # 21 # Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa Clara,22 # CA 95054 USA or visit www.sun.com if you need additional information or23 # have anyquestions.21 # Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA 22 # or visit www.oracle.com if you need additional information or have any 23 # questions. 24 24 # 25 25 -
trunk/openjdk/langtools/make/test/lib/javac.sh
r2 r278 2 2 3 3 # 4 # Copyright 2007 Sun Microsystems, Inc. All Rights Reserved.4 # Copyright (c) 2007, Oracle and/or its affiliates. All rights reserved. 5 5 # DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. 6 6 # … … 19 19 # Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. 20 20 # 21 # Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa Clara,22 # CA 95054 USA or visit www.sun.com if you need additional information or23 # have anyquestions.21 # Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA 22 # or visit www.oracle.com if you need additional information or have any 23 # questions. 24 24 # 25 25 -
trunk/openjdk/langtools/make/test/lib/javadoc.sh
r2 r278 2 2 3 3 # 4 # Copyright 2007 Sun Microsystems, Inc. All Rights Reserved.4 # Copyright (c) 2007, Oracle and/or its affiliates. All rights reserved. 5 5 # DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. 6 6 # … … 19 19 # Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. 20 20 # 21 # Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa Clara,22 # CA 95054 USA or visit www.sun.com if you need additional information or23 # have anyquestions.21 # Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA 22 # or visit www.oracle.com if you need additional information or have any 23 # questions. 24 24 # 25 25 -
trunk/openjdk/langtools/make/test/lib/javah.sh
r2 r278 2 2 3 3 # 4 # Copyright 2002-2007 Sun Microsystems, Inc. All Rights Reserved.4 # Copyright (c) 2002, 2007, Oracle and/or its affiliates. All rights reserved. 5 5 # DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. 6 6 # … … 19 19 # Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. 20 20 # 21 # Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa Clara,22 # CA 95054 USA or visit www.sun.com if you need additional information or23 # have anyquestions.21 # Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA 22 # or visit www.oracle.com if you need additional information or have any 23 # questions. 24 24 # 25 25 -
trunk/openjdk/langtools/make/test/lib/javap.sh
r2 r278 2 2 3 3 # 4 # Copyright 2007 Sun Microsystems, Inc. All Rights Reserved.4 # Copyright (c) 2007, Oracle and/or its affiliates. All rights reserved. 5 5 # DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. 6 6 # … … 19 19 # Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. 20 20 # 21 # Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa Clara,22 # CA 95054 USA or visit www.sun.com if you need additional information or23 # have anyquestions.21 # Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA 22 # or visit www.oracle.com if you need additional information or have any 23 # questions. 24 24 # 25 25 -
trunk/openjdk/langtools/make/test/lib/src.sh
r2 r278 2 2 3 3 # 4 # Copyright 2007 Sun Microsystems, Inc. All Rights Reserved.4 # Copyright (c) 2007, Oracle and/or its affiliates. All rights reserved. 5 5 # DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. 6 6 # … … 19 19 # Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. 20 20 # 21 # Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa Clara,22 # CA 95054 USA or visit www.sun.com if you need additional information or23 # have anyquestions.21 # Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA 22 # or visit www.oracle.com if you need additional information or have any 23 # questions. 24 24 # 25 25 -
trunk/openjdk/langtools/make/tools/CompileProperties/CompileProperties.java
r2 r278 1 1 /* 2 * Copyright 2002-2005 Sun Microsystems, Inc. All Rights Reserved.2 * Copyright (c) 2002, 2005, Oracle and/or its affiliates. All rights reserved. 3 3 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. 4 4 * 5 5 * This code is free software; you can redistribute it and/or modify it 6 6 * under the terms of the GNU General Public License version 2 only, as 7 * published by the Free Software Foundation. Sundesignates this7 * published by the Free Software Foundation. Oracle designates this 8 8 * particular file as subject to the "Classpath" exception as provided 9 * by Sunin the LICENSE file that accompanied this code.9 * by Oracle in the LICENSE file that accompanied this code. 10 10 * 11 11 * This code is distributed in the hope that it will be useful, but WITHOUT … … 19 19 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. 20 20 * 21 * Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa Clara,22 * CA 95054 USA or visit www.sun.com if you need additional information or23 * have anyquestions.21 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA 22 * or visit www.oracle.com if you need additional information or have any 23 * questions. 24 24 */ 25 25 -
trunk/openjdk/langtools/make/tools/CompileProperties/CompilePropertiesTask.java
r2 r278 1 1 /* 2 * Copyright 2007 Sun Microsystems, Inc. All Rights Reserved.2 * Copyright (c) 2007, Oracle and/or its affiliates. All rights reserved. 3 3 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. 4 4 * 5 5 * This code is free software; you can redistribute it and/or modify it 6 6 * under the terms of the GNU General Public License version 2 only, as 7 * published by the Free Software Foundation. Sundesignates this7 * published by the Free Software Foundation. Oracle designates this 8 8 * particular file as subject to the "Classpath" exception as provided 9 * by Sunin the LICENSE file that accompanied this code.9 * by Oracle in the LICENSE file that accompanied this code. 10 10 * 11 11 * This code is distributed in the hope that it will be useful, but WITHOUT … … 19 19 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. 20 20 * 21 * Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa Clara,22 * CA 95054 USA or visit www.sun.com if you need additional information or23 * have anyquestions.21 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA 22 * or visit www.oracle.com if you need additional information or have any 23 * questions. 24 24 */ 25 25
Note:
See TracChangeset
for help on using the changeset viewer.