1 package com.wikihouse.wildcats0201.jdbcchart.reflectionutil; 2 3 /*** 4 * <B>ObjectArrayWrapper </B>. Object配列をラッピングするクラスです。 5 * 6 * @author $Author: wildcats $ 7 * @version $Revision: 5 $ 8 */ 9 public class ObjectArrayWrapper extends ArrayWrapper { 10 11 private final Object[] objects; 12 13 private ObjectArrayWrapper() { 14 this.objects = null; 15 } 16 17 public ObjectArrayWrapper(Object[] objects) { 18 this.objects = objects; 19 } 20 21 public Object[] get() { 22 return this.objects; 23 } 24 25 }