Package org.eclipse.emf.transaction.impl

Examples of org.eclipse.emf.transaction.impl.TransactionalEditingDomainImpl


    }
  }
 
  public BPMN2EditingDomainListener getEditingDomainListener() {
    if (editingDomainListener==null) {
      TransactionalEditingDomainImpl editingDomain = (TransactionalEditingDomainImpl)getEditingDomain();
      if (editingDomain==null) {
        return null;
      }
      editingDomainListener = new BPMN2EditingDomainListener(this);

      Lifecycle domainLifeCycle = (Lifecycle) editingDomain.getAdapter(Lifecycle.class);
      domainLifeCycle.addTransactionalEditingDomainListener(editingDomainListener);
    }
    return editingDomainListener;
  }
View Full Code Here

TOP

Related Classes of org.eclipse.emf.transaction.impl.TransactionalEditingDomainImpl

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.