Package org.objectstyle.wolips.eomodeler.core.model.history

Examples of org.objectstyle.wolips.eomodeler.core.model.history.EOAttributeDeletedEvent


    Set<EOAttribute> newAttributes = new LinkedHashSet<EOAttribute>();
    newAttributes.addAll(myAttributes);
    newAttributes.remove(_attribute);
    myAttributes = newAttributes;
    if (myModel != null) {
      myModel.getModelEvents().addEvent(new EOAttributeDeletedEvent(_attribute));
    }
    firePropertyChange(EOEntity.ATTRIBUTES, oldAttributes, newAttributes);
    if (_removeFromSubclasses) {
      for (EOEntity childEntity : getChildrenEntities()) {
        EOAttribute childAttribute = childEntity.getAttributeNamed(attributeName);
View Full Code Here

TOP

Related Classes of org.objectstyle.wolips.eomodeler.core.model.history.EOAttributeDeletedEvent

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.