1 19 package org.apache.cayenne.wocompat; 20 21 import org.apache.cayenne.map.DbAttribute; 22 import org.apache.cayenne.map.DbEntity; 23 24 29 public class EODbAttribute extends DbAttribute { 30 31 protected String eoAttributeName; 32 33 public EODbAttribute() { 34 } 35 36 public EODbAttribute(String name, int type, DbEntity entity) { 37 super(name, type, entity); 38 } 39 40 public String getEoAttributeName() { 41 return eoAttributeName; 42 } 43 44 public void setEoAttributeName(String eoAttributeName) { 45 this.eoAttributeName = eoAttributeName; 46 } 47 } 48 | Popular Tags |