~raginggoblin/infolog/infolog

« back to all changes in this revision

Viewing changes to InfologServer/lib/hibernate-annotations-3.4.0.GA/test/org/hibernate/test/annotations/target/SizeImpl.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: SizeImpl.java 14736 2008-06-04 14:23:42Z hardy.ferentschik $
2
 
package org.hibernate.test.annotations.target;
3
 
 
4
 
import javax.persistence.Embeddable;
5
 
 
6
 
/**
7
 
 * @author Emmanuel Bernard
8
 
 */
9
 
@Embeddable
10
 
public class SizeImpl implements Size {
11
 
        private String name;
12
 
 
13
 
        public String getName() {
14
 
                return name;
15
 
        }
16
 
 
17
 
        public void setName(String name) {
18
 
                this.name = name;
19
 
        }
20
 
}