%line | %branch | |||||||||
---|---|---|---|---|---|---|---|---|---|---|
com.wikihouse.wildcats0201.jdbcchart.reflectionutil.ObjectArrayWrapper |
|
|
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 | 0 | private ObjectArrayWrapper() { |
14 | 0 | this.objects = null; |
15 | 0 | } |
16 | ||
17 | 0 | public ObjectArrayWrapper(Object[] objects) { |
18 | 0 | this.objects = objects; |
19 | 0 | } |
20 | ||
21 | public Object[] get() { |
|
22 | 0 | return this.objects; |
23 | } |
|
24 | ||
25 | } |
This report is generated by jcoverage, Maven and Maven JCoverage Plugin. |