~raginggoblin/infolog/infolog

« back to all changes in this revision

Viewing changes to InfologServer/lib/hibernate-distribution-3.3.2.GA/project/testsuite/src/test/java/org/hibernate/test/iterate/Item.java

  • Committer: Raging Goblin
  • Date: 2013-11-16 16:51:32 UTC
  • Revision ID: raging_goblin-20131116165132-weujnptzc88uy4ah
Mavenized the project, now using shared project InfologSync

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
//$Id: Item.java 6593 2005-04-28 15:52:26Z oneovthafew $
2
 
package org.hibernate.test.iterate;
3
 
 
4
 
/**
5
 
 * @author Gavin King
6
 
 */
7
 
public class Item {
8
 
        private String name;
9
 
        Item() {}
10
 
        public Item(String n) {
11
 
                name = n;
12
 
        }
13
 
        public String getName() {
14
 
                return name;
15
 
        }
16
 
 
17
 
        public void setName(String name) {
18
 
                this.name = name;
19
 
        }
20
 
}