1 25 package org.objectweb.easybeans.tests.common.ejbs.entity.entitytest01; 26 27 import javax.persistence.Entity; 28 29 35 @Entity 36 public class ClassRoom extends Room { 37 38 41 private int capacity; 42 43 44 48 public int getCapacity() { 49 return capacity; 50 } 51 52 56 public void setCapacity(final int capacity) { 57 this.capacity = capacity; 58 } 59 60 61 } 62 | Popular Tags |