1 25 package org.objectweb.easybeans.tests.common.ejbs.entity.geometricforms; 26 27 import javax.persistence.Entity; 28 import javax.persistence.TableGenerator; 29 30 35 @Entity 36 @TableGenerator(name = "ID_SEQ", allocationSize = 1) 37 public class Circle extends Form { 38 39 42 private float radius; 43 44 48 public float getRadius() { 49 return radius; 50 } 51 52 56 public void setRadius(final float radius) { 57 this.radius = radius; 58 } 59 } 60 | Popular Tags |