View Javadoc
1   /**
2    * 
3    */
4   package org.melati.poem.test.pojo;
5   /** A class with String Id field. */
6   public class ClassWithStringId { 
7     /**    */
8     public String Id;
9     /**
10     * @return the id
11     */
12    public String getId() {
13      return Id;
14    }
15    /**
16     * @param id the id to set
17     */
18    public void setId(String id) {
19      Id = id;
20    }
21  }