blob: 4a585edf69d549dd00dad404fec45c756cf9490d [file] [log] [blame]
/*******************************************************************************
* <copyright>
*
* Copyright (c) 2011, 2014 Volker Wegert and others.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/epl-v10.html
*
* Contributors:
* Volker Wegert - initial API, implementation and documentation:
* Bug 336828: patterns should support delete,
* remove, direct editing and conditional palette
* creation entry
* mwenz - Bug 453553 - Provide an abort possibility for delete and remove features in case 'pre' methods fail
*
* </copyright>
*
*******************************************************************************/
package org.eclipse.graphiti.func;
import org.eclipse.core.runtime.OperationCanceledException;
import org.eclipse.graphiti.features.context.IRemoveContext;
/**
* Instances of this interface provide the behavior to remove objects. Removing
* means removing the graphical representation of a business object from the
* diagram while keeping the business object itself as it is.
*
* @noimplement This interface is not intended to be implemented by clients.
* @noextend This interface is not intended to be extended by clients.
* @since 0.8.0
*/
public interface IRemove {
/**
* Checks if given object could be removed.
*
* @param context
* contains object to remove
*
* @return true if remove is possible
*/
boolean canRemove(IRemoveContext context);
/**
* called prior to remove call.
*
* @param context
* the context
*/
void preRemove(IRemoveContext context);
/**
* The Graphiti framework will call this method after
* {@link #preRemove(IRemoveContext)} has been called and before the actual
* remove is done. In case this method returns <code>true</code>, the
* operation will be cancelled by the Graphiti framework by throwing an
* {@link OperationCanceledException} that causes am EMF revert of the
* operation.
* <p>
* Implementing classes might e.g. set a flag in
* {@link #preRemove(IRemoveContext)} as cancellation indication and check
* that that flag here.
*
* @return <code>true</code> in case you want to cancel the current
* operation, <code>false</code> otherwise.
* @since 0.12
*/
boolean isRemoveAbort();
/**
* Remove the given object.
*
* @param context
* contains object to remove
*/
void remove(IRemoveContext context);
/**
* called after remove call.
*
* @param context
* the context
*/
void postRemove(IRemoveContext context);
}