1 package org.objectstyle.cayenne.wocompat; 2 3 import org.objectstyle.cayenne.map.DbAttribute; 4 import org.objectstyle.cayenne.map.DbEntity; 5 6 61 62 67 public class EODbAttribute extends DbAttribute { 68 69 protected String eoAttributeName; 70 71 public EODbAttribute() { 72 } 73 74 public EODbAttribute(String name, int type, DbEntity entity) { 75 super(name, type, entity); 76 } 77 78 public String getEoAttributeName() { 79 return eoAttributeName; 80 } 81 82 public void setEoAttributeName(String eoAttributeName) { 83 this.eoAttributeName = eoAttributeName; 84 } 85 } | Popular Tags |