src/share/classes/sun/reflect/generics/reflectiveObjects/GenericArrayTypeImpl.java

Print this page




  17  * You should have received a copy of the GNU General Public License version
  18  * 2 along with this work; if not, write to the Free Software Foundation,
  19  * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
  20  *
  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  */
  25 
  26 package sun.reflect.generics.reflectiveObjects;
  27 
  28 import java.lang.reflect.GenericArrayType;
  29 import java.lang.reflect.Type;
  30 import java.util.Objects;
  31 
  32 /**
  33  * Implementation of GenericArrayType interface for core reflection.
  34  */
  35 public class GenericArrayTypeImpl
  36     implements GenericArrayType {
  37     private Type genericComponentType;
  38 
  39     // private constructor enforces use of static factory
  40     private GenericArrayTypeImpl(Type ct) {
  41         genericComponentType = ct;
  42     }
  43 
  44     /**
  45      * Factory method.
  46      * @param ct - the desired component type of the generic array type
  47      * being created
  48      * @return a generic array type with the desired component type
  49      */
  50     public static GenericArrayTypeImpl make(Type ct) {
  51         return new GenericArrayTypeImpl(ct);
  52     }
  53 
  54 
  55     /**
  56      * Returns  a <tt>Type</tt> object representing the component type
  57      * of this array.




  17  * You should have received a copy of the GNU General Public License version
  18  * 2 along with this work; if not, write to the Free Software Foundation,
  19  * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
  20  *
  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  */
  25 
  26 package sun.reflect.generics.reflectiveObjects;
  27 
  28 import java.lang.reflect.GenericArrayType;
  29 import java.lang.reflect.Type;
  30 import java.util.Objects;
  31 
  32 /**
  33  * Implementation of GenericArrayType interface for core reflection.
  34  */
  35 public class GenericArrayTypeImpl
  36     implements GenericArrayType {
  37     private final Type genericComponentType;
  38 
  39     // private constructor enforces use of static factory
  40     private GenericArrayTypeImpl(Type ct) {
  41         genericComponentType = ct;
  42     }
  43 
  44     /**
  45      * Factory method.
  46      * @param ct - the desired component type of the generic array type
  47      * being created
  48      * @return a generic array type with the desired component type
  49      */
  50     public static GenericArrayTypeImpl make(Type ct) {
  51         return new GenericArrayTypeImpl(ct);
  52     }
  53 
  54 
  55     /**
  56      * Returns  a <tt>Type</tt> object representing the component type
  57      * of this array.