package-info.java revision 1590:1916a2c680d8
1209139Srpaulo/*
2209139Srpaulo * Copyright (c) 2015, Oracle and/or its affiliates. All rights reserved.
3209139Srpaulo * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
4209139Srpaulo *
5252726Srpaulo * This code is free software; you can redistribute it and/or modify it
6252726Srpaulo * under the terms of the GNU General Public License version 2 only, as
7209139Srpaulo * published by the Free Software Foundation.  Oracle designates this
8209139Srpaulo * particular file as subject to the "Classpath" exception as provided
9209139Srpaulo * by Oracle in the LICENSE file that accompanied this code.
10209139Srpaulo *
11209139Srpaulo * This code is distributed in the hope that it will be useful, but WITHOUT
12209139Srpaulo * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
13209139Srpaulo * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
14209139Srpaulo * version 2 for more details (a copy is included in the LICENSE file that
15209139Srpaulo * accompanied this code).
16209139Srpaulo *
17209139Srpaulo * You should have received a copy of the GNU General Public License version
18209139Srpaulo * 2 along with this work; if not, write to the Free Software Foundation,
19209139Srpaulo * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
20209139Srpaulo *
21209139Srpaulo * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
22209139Srpaulo * or visit www.oracle.com if you need additional information or have any
23209139Srpaulo * questions.
24209139Srpaulo */
25209139Srpaulo
26209139Srpaulo/*
27209139Srpaulo * This file is available under and governed by the GNU General Public
28209139Srpaulo * License version 2 only, as published by the Free Software Foundation.
29209139Srpaulo * However, the following notice accompanied the original version of this
30209139Srpaulo * file, and Oracle licenses the original version of this file under the BSD
31209139Srpaulo * license:
32209139Srpaulo */
33209139Srpaulo/*
34209139Srpaulo   Copyright 2009-2013 Attila Szegedi
35209139Srpaulo
36209139Srpaulo   Licensed under both the Apache License, Version 2.0 (the "Apache License")
37209139Srpaulo   and the BSD License (the "BSD License"), with licensee being free to
38209139Srpaulo   choose either of the two at their discretion.
39209139Srpaulo
40209139Srpaulo   You may not use this file except in compliance with either the Apache
41209139Srpaulo   License or the BSD License.
42209139Srpaulo
43209139Srpaulo   If you choose to use this file in compliance with the Apache License, the
44209139Srpaulo   following notice applies to you:
45209139Srpaulo
46209139Srpaulo       You may obtain a copy of the Apache License at
47209139Srpaulo
48209139Srpaulo           http://www.apache.org/licenses/LICENSE-2.0
49209139Srpaulo
50209139Srpaulo       Unless required by applicable law or agreed to in writing, software
51209139Srpaulo       distributed under the License is distributed on an "AS IS" BASIS,
52209139Srpaulo       WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
53209139Srpaulo       implied. See the License for the specific language governing
54209139Srpaulo       permissions and limitations under the License.
55209139Srpaulo
56209139Srpaulo   If you choose to use this file in compliance with the BSD License, the
57209139Srpaulo   following notice applies to you:
58209139Srpaulo
59209139Srpaulo       Redistribution and use in source and binary forms, with or without
60209139Srpaulo       modification, are permitted provided that the following conditions are
61209139Srpaulo       met:
62209139Srpaulo       * Redistributions of source code must retain the above copyright
63209139Srpaulo         notice, this list of conditions and the following disclaimer.
64209139Srpaulo       * Redistributions in binary form must reproduce the above copyright
65209139Srpaulo         notice, this list of conditions and the following disclaimer in the
66209139Srpaulo         documentation and/or other materials provided with the distribution.
67209139Srpaulo       * Neither the name of the copyright holder nor the names of
68209139Srpaulo         contributors may be used to endorse or promote products derived from
69209139Srpaulo         this software without specific prior written permission.
70209139Srpaulo
71209139Srpaulo       THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS
72209139Srpaulo       IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
73209139Srpaulo       TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A
74209139Srpaulo       PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL COPYRIGHT HOLDER
75209139Srpaulo       BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
76209139Srpaulo       CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
77209139Srpaulo       SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR
78209139Srpaulo       BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
79209139Srpaulo       WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR
80209139Srpaulo       OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
81209139Srpaulo       ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
82209139Srpaulo*/
83209139Srpaulo
84209139Srpaulo/**
85209139Srpaulo * Contains the linker for ordinary Java objects.
86209139Srpaulo * @since 1.9
87209139Srpaulo */
88209139Srpaulopackage jdk.dynalink.beans;
89209139Srpaulo