1 24 package org.ofbiz.entity.model; 25 26 import java.io.Serializable ; 27 28 36 public abstract class ModelChild implements Serializable { 37 38 protected ModelEntity parentModelEntity; 39 40 protected ModelChild() {} 41 protected ModelChild(ModelEntity parentModelEntity) { 42 setModelEntity(parentModelEntity); 43 } 44 45 protected void setModelEntity(ModelEntity parentModelEntity) { 46 this.parentModelEntity = parentModelEntity; 47 } 48 49 public ModelEntity getModelEntity() { 50 return parentModelEntity; 51 } 52 } 53 | Popular Tags |