1 package org.objectstyle.cayenne.modeler.event; 2 57 58 import org.objectstyle.cayenne.access.DataDomain; 59 import org.objectstyle.cayenne.map.Attribute; 60 import org.objectstyle.cayenne.map.DataMap; 61 import org.objectstyle.cayenne.map.Entity; 62 63 66 public class AttributeDisplayEvent extends EntityDisplayEvent { 67 protected Attribute attribute; 68 69 public AttributeDisplayEvent( 70 Object src, 71 Attribute temp_attribute, 72 Entity temp_entity, 73 DataMap data_map, 74 DataDomain temp_domain) { 75 super(src, temp_entity, data_map, temp_domain); 76 attribute = temp_attribute; 77 } 78 79 public Attribute getAttribute() { 80 return attribute; 81 } 82 } | Popular Tags |