Package org.emftrace.emffit.history.items

Examples of org.emftrace.emffit.history.items.MoveHistoryItem


   */
  private List<AbstractHistoryItem> createMoveOperation(
      MultiReferenceMoveOperation op) {
 
    List<AbstractHistoryItem> result = new ArrayList<AbstractHistoryItem>();
    result.add(new MoveHistoryItem(op.getModelElementId(), new Integer(op
        .getOldIndex()).toString(), new Integer(op.getNewIndex())
        .toString(), op.getReferencedModelElementId(), getUserName(), op
        .getClientDate()));
    return result;
  }
View Full Code Here

TOP

Related Classes of org.emftrace.emffit.history.items.MoveHistoryItem

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.