jdk/src/java.base/share/classes/java/lang/reflect/package-info.java
author alanb
Fri, 10 Feb 2017 09:04:39 +0000
changeset 43712 5dfd0950317c
parent 36511 9d0388c6b336
child 44545 83b611b88ac8
permissions -rw-r--r--
8173393: Module system implementation refresh (2/2017) Reviewed-by: dfuchs, psandoz, mchung, alanb Contributed-by: alan.bateman@oracle.com, mandy.chung@oracle.com, claes.redestad@oracle.com, alex.buckley@oracle.com, mark.reinhold@oracle.com, john.r.rose@oracle.com
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
     1
/*
36511
9d0388c6b336 8142968: Module System implementation
alanb
parents: 25859
diff changeset
     2
 * Copyright (c) 1998, 2016, Oracle and/or its affiliates. All rights reserved.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
     3
 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
90ce3da70b43 Initial load
duke
parents:
diff changeset
     4
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
     5
 * This code is free software; you can redistribute it and/or modify it
90ce3da70b43 Initial load
duke
parents:
diff changeset
     6
 * under the terms of the GNU General Public License version 2 only, as
5506
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 2
diff changeset
     7
 * published by the Free Software Foundation.  Oracle designates this
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
     8
 * particular file as subject to the "Classpath" exception as provided
5506
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 2
diff changeset
     9
 * by Oracle in the LICENSE file that accompanied this code.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    10
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    11
 * This code is distributed in the hope that it will be useful, but WITHOUT
90ce3da70b43 Initial load
duke
parents:
diff changeset
    12
 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
90ce3da70b43 Initial load
duke
parents:
diff changeset
    13
 * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
90ce3da70b43 Initial load
duke
parents:
diff changeset
    14
 * version 2 for more details (a copy is included in the LICENSE file that
90ce3da70b43 Initial load
duke
parents:
diff changeset
    15
 * accompanied this code).
90ce3da70b43 Initial load
duke
parents:
diff changeset
    16
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    17
 * You should have received a copy of the GNU General Public License version
90ce3da70b43 Initial load
duke
parents:
diff changeset
    18
 * 2 along with this work; if not, write to the Free Software Foundation,
90ce3da70b43 Initial load
duke
parents:
diff changeset
    19
 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    20
 *
5506
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 2
diff changeset
    21
 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 2
diff changeset
    22
 * or visit www.oracle.com if you need additional information or have any
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 2
diff changeset
    23
 * questions.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    24
 */
90ce3da70b43 Initial load
duke
parents:
diff changeset
    25
90ce3da70b43 Initial load
duke
parents:
diff changeset
    26
/**
36511
9d0388c6b336 8142968: Module System implementation
alanb
parents: 25859
diff changeset
    27
 * Provides classes and interfaces for obtaining reflective information about
9d0388c6b336 8142968: Module System implementation
alanb
parents: 25859
diff changeset
    28
 * modules, classes and objects.  Reflection allows programmatic access to
9d0388c6b336 8142968: Module System implementation
alanb
parents: 25859
diff changeset
    29
 * information about modules and to the fields, methods and constructors of
9d0388c6b336 8142968: Module System implementation
alanb
parents: 25859
diff changeset
    30
 * loaded classes, and the use of reflected fields, methods, and constructors
9d0388c6b336 8142968: Module System implementation
alanb
parents: 25859
diff changeset
    31
 * to operate on their underlying counterparts, within encapsulation and
9d0388c6b336 8142968: Module System implementation
alanb
parents: 25859
diff changeset
    32
 * security restrictions.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    33
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    34
 * <p>{@code AccessibleObject} allows suppression of access checks if
90ce3da70b43 Initial load
duke
parents:
diff changeset
    35
 * the necessary {@code ReflectPermission} is available.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    36
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    37
 * <p>{@code Array} provides static methods to dynamically create and
90ce3da70b43 Initial load
duke
parents:
diff changeset
    38
 * access arrays.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    39
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    40
 * <p>Classes in this package, along with {@code java.lang.Class}
90ce3da70b43 Initial load
duke
parents:
diff changeset
    41
 * accommodate applications such as debuggers, interpreters, object
90ce3da70b43 Initial load
duke
parents:
diff changeset
    42
 * inspectors, class browsers, and services such as Object
90ce3da70b43 Initial load
duke
parents:
diff changeset
    43
 * Serialization and JavaBeans that need access to either the public
90ce3da70b43 Initial load
duke
parents:
diff changeset
    44
 * members of a target object (based on its runtime class) or the
90ce3da70b43 Initial load
duke
parents:
diff changeset
    45
 * members declared by a given class.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    46
 *
24865
09b1d992ca72 8044740: Convert all JDK versions used in @since tag to 1.n[.n] in jdk repo
henryjen
parents: 5506
diff changeset
    47
 * @since 1.1
43712
5dfd0950317c 8173393: Module system implementation refresh (2/2017)
alanb
parents: 36511
diff changeset
    48
 * @revised 9
5dfd0950317c 8173393: Module system implementation refresh (2/2017)
alanb
parents: 36511
diff changeset
    49
 * @spec JPMS
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    50
 */
90ce3da70b43 Initial load
duke
parents:
diff changeset
    51
package java.lang.reflect;