1 25 26 package org.objectweb.easybeans.tests.common.ejbs.entity.entitytest02; 27 28 import javax.persistence.Entity; 29 import javax.persistence.TableGenerator; 30 31 36 @Entity 37 @TableGenerator(name = "PROGRAM_SEQ", allocationSize = 1) 38 public class Master extends Program { 39 40 43 private float price; 44 45 49 public float getPrice() { 50 return price; 51 } 52 53 57 public void setPrice(final float price) { 58 this.price = price; 59 } 60 61 } 62 | Popular Tags |