1 19 package org.apache.cayenne.wocompat; 20 21 import org.apache.cayenne.map.ObjAttribute; 22 import org.apache.cayenne.map.ObjEntity; 23 24 29 public class EOObjAttribute extends ObjAttribute { 30 31 protected boolean readOnly; 32 33 public EOObjAttribute() { 34 35 } 36 37 public EOObjAttribute(String name) { 38 super(name); 39 } 40 41 public EOObjAttribute(String name, String type, ObjEntity parent) { 42 super(name, type, parent); 43 } 44 45 48 public boolean getReadOnly() { 49 return isReadOnly(); 50 } 51 52 public boolean isReadOnly() { 53 return readOnly; 54 } 55 56 public void setReadOnly(boolean readOnly) { 57 this.readOnly = readOnly; 58 } 59 } 60 | Popular Tags |