%line | %branch | |||||||||
---|---|---|---|---|---|---|---|---|---|---|
com.wikihouse.wildcats0201.jdbcchart.dto.Item |
|
|
1 | package com.wikihouse.wildcats0201.jdbcchart.dto; |
|
2 | ||
3 | /** |
|
4 | * <B>Item </B>. |
|
5 | * |
|
6 | * @author $Author: wildcats $ |
|
7 | * @version $Revision: 5 $ |
|
8 | */ |
|
9 | public class Item { |
|
10 | ||
11 | private final String name; |
|
12 | 6 | |
13 | 9 | public Item(String name) { |
14 | 9 | this.name = name; |
15 | 3 | } |
16 | ||
17 | 6 | public String getName() { |
18 | 3 | return this.name; |
19 | } |
|
20 | ||
21 | } |
This report is generated by jcoverage, Maven and Maven JCoverage Plugin. |