src/share/classes/com/sun/tools/classfile/package-info.java

Tue, 24 Dec 2013 09:17:37 -0800

author
ksrini
date
Tue, 24 Dec 2013 09:17:37 -0800
changeset 2227
998b10c43157
parent 2112
b9e3b55a908c
child 2525
2eb010b6cb22
permissions
-rw-r--r--

8029230: Update copyright year to match last edit in jdk8 langtools repository for 2013
Reviewed-by: ksrini
Contributed-by: steve.sides@oracle.com

jjg@2112 1 /*
jjg@2112 2 * Copyright (c) 2007, 2013, Oracle and/or its affiliates. All rights reserved.
jjg@2112 3 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
jjg@2112 4 *
jjg@2112 5 * This code is free software; you can redistribute it and/or modify it
jjg@2112 6 * under the terms of the GNU General Public License version 2 only, as
jjg@2112 7 * published by the Free Software Foundation. Oracle designates this
jjg@2112 8 * particular file as subject to the "Classpath" exception as provided
jjg@2112 9 * by Oracle in the LICENSE file that accompanied this code.
jjg@2112 10 *
jjg@2112 11 * This code is distributed in the hope that it will be useful, but WITHOUT
jjg@2112 12 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
jjg@2112 13 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
jjg@2112 14 * version 2 for more details (a copy is included in the LICENSE file that
jjg@2112 15 * accompanied this code).
jjg@2112 16 *
jjg@2112 17 * You should have received a copy of the GNU General Public License version
jjg@2112 18 * 2 along with this work; if not, write to the Free Software Foundation,
jjg@2112 19 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
jjg@2112 20 *
jjg@2112 21 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
jjg@2112 22 * or visit www.oracle.com if you need additional information or have any
jjg@2112 23 * questions.
jjg@2112 24 */
jjg@2112 25
jjg@2112 26 /**
jjg@2112 27 A minimalist library to read and write class files into objects closely
jjg@2112 28 based on the corresponding definitions in
jjh@972 29 <cite>The Java&trade; Virtual Machine Specification</cite> (JVMS).
jjg@2112 30
jjg@2112 31 <p><b>This is NOT part of any supported API.
jjg@2112 32 If you write code that depends on this, you do so at your own risk.
jjg@2112 33 This code and its internal interfaces are subject to change or
jjg@2112 34 deletion without notice.</b>
jjg@2112 35 */
jjg@2112 36 @jdk.Exported(false)
jjg@2112 37 package com.sun.tools.classfile;

mercurial