View Javadoc

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  
13      public Item(String name) {
14          this.name = name;
15      }
16  
17      public String getName() {
18          return this.name;
19      }
20  
21  }