View Javadoc
1   /**
2    * 
3    */
4   package org.melati.poem.test.pojo;
5   
6   /**
7    * @author timp
8    * @since 15 Jun 2007
9    *
10   */
11  public class ClassWithId {
12  
13    /**
14     * 
15     */
16    public ClassWithId() {
17    }
18    private Integer id;
19    /**
20     * @return the id
21     */
22    public Integer getId() {
23      return id;
24    }
25    /**
26     * @param id the id to set
27     */
28    public void setId(Integer id) {
29      this.id = id;
30    }
31  }