Many resources are needed to download a project. Please understand that we have to compensate our server costs. Thank you in advance. Project price only 1 $
You can buy this project and download/modify it how often you want.
/**
* Copyright (c) 2002-2006 IBM Corporation and others.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v2.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/epl-v20.html
*
* Contributors:
* IBM - Initial API and implementation
*/
package org.eclipse.emf.edit.command;
import java.util.Collection;
import java.util.Collections;
import org.eclipse.emf.common.command.Command;
import org.eclipse.emf.common.util.EList;
import org.eclipse.emf.ecore.EObject;
import org.eclipse.emf.ecore.EStructuralFeature;
import org.eclipse.emf.edit.EMFEditPlugin;
import org.eclipse.emf.edit.domain.EditingDomain;
/**
* The move command logically acts upon an owner object that has a collection-based feature
* containing an object that is to be moved to a new position within the collection.
* The static create method delegates command creation to {@link EditingDomain#createCommand EditingDomain.createCommand},
* which may or may not result in the actual creation of an instance of this class.
* Like all the low level commands in this package, the move command is undoable.
*
*
* The implementation of this class is low-level and EMF specific;
* it allows an object to be moved to a new position within a many-valued feature of an owner,
* i.e., it is equivalent of the call
*
* It can also be used as an equivalent to the call
*
* ((EList)extent).move(index, object);
*
* which is how root objects are moved within the contents of a resource.
* Like all the low-level commands in this package, the move command is undoable.
*
*
* A move command is an {@link OverrideableCommand}.
*/
public class MoveCommand extends AbstractOverrideableCommand
{
/**
* This creates a command to move particular value to a particular index in the specified feature of the owner.
* The feature will often be null because the domain will deduce it.
*/
public static Command create(EditingDomain domain, Object owner, Object feature, Object value, int index)
{
return domain.createCommand(MoveCommand.class, new CommandParameter(owner, feature, value, index));
}
/**
* This creates a command to move the value at the source index to the target index in the specified feature of the owner.
* The feature should typically not be null because the domain likely can't deduce it.
* @since 2.15
*/
public static Command create(EditingDomain domain, Object owner, Object feature, int sourceIndex, int targetIndex)
{
return create(domain, owner, feature, CommandParameter.Indices.create(sourceIndex), targetIndex);
}
/**
* This caches the label.
*/
protected static final String LABEL = EMFEditPlugin.INSTANCE.getString("_UI_MoveCommand_label");
/**
* This caches the description.
*/
protected static final String DESCRIPTION = EMFEditPlugin.INSTANCE.getString("_UI_MoveCommand_description");
/**
* This caches the description for a list-based command.
*/
protected static final String DESCRIPTION_FOR_LIST = EMFEditPlugin.INSTANCE.getString("_UI_MoveCommand_description_for_list");
/**
* This is the owner object upon which the command will act.
* It could be null in the case that we are dealing with an {@link org.eclipse.emf.common.util.EList}.
*/
protected EObject owner;
/**
* This is the feature of the owner object upon the command will act.
* It could be null, in the case that we are dealing with an {@link org.eclipse.emf.common.util.EList}.
*/
protected EStructuralFeature feature;
/**
* This is the list in which the command will move an object.
*/
protected EList