Skip to main content
summaryrefslogblamecommitdiffstats
blob: 48155331dc22f35d065c52ffdbebf911cdde94c9 (plain) (tree)






















































                                                                                           
/*
 * 
 */
package comrel.diagram.edit.policies;

import org.eclipse.gef.commands.Command;
import org.eclipse.gmf.runtime.emf.type.core.requests.CreateElementRequest;

import comrel.diagram.edit.commands.AtomicUnit7CreateCommand;
import comrel.diagram.edit.commands.CartesianQueuedUnit7CreateCommand;
import comrel.diagram.edit.commands.ConditionalUnit7CreateCommand;
import comrel.diagram.edit.commands.ParallelQueuedUnit7CreateCommand;
import comrel.diagram.edit.commands.SequentialUnit7CreateCommand;
import comrel.diagram.edit.commands.SingleQueuedUnit7CreateCommand;
import comrel.diagram.providers.ComrelElementTypes;

/**
 * @generated
 */
public class ConditionalUnitConditionalUnitElseCompartment6ItemSemanticEditPolicy
		extends ComrelBaseItemSemanticEditPolicy {

	/**
	 * @generated
	 */
	public ConditionalUnitConditionalUnitElseCompartment6ItemSemanticEditPolicy() {
		super(ComrelElementTypes.ConditionalUnit_3075);
	}

	/**
	 * @generated
	 */
	protected Command getCreateCommand(CreateElementRequest req) {
		if (ComrelElementTypes.CartesianQueuedUnit_3047 == req.getElementType()) {
			return getGEFWrapper(new CartesianQueuedUnit7CreateCommand(req));
		}
		if (ComrelElementTypes.ParallelQueuedUnit_3048 == req.getElementType()) {
			return getGEFWrapper(new ParallelQueuedUnit7CreateCommand(req));
		}
		if (ComrelElementTypes.SingleQueuedUnit_3067 == req.getElementType()) {
			return getGEFWrapper(new SingleQueuedUnit7CreateCommand(req));
		}
		if (ComrelElementTypes.SequentialUnit_3073 == req.getElementType()) {
			return getGEFWrapper(new SequentialUnit7CreateCommand(req));
		}
		if (ComrelElementTypes.ConditionalUnit_3075 == req.getElementType()) {
			return getGEFWrapper(new ConditionalUnit7CreateCommand(req));
		}
		if (ComrelElementTypes.AtomicUnit_3078 == req.getElementType()) {
			return getGEFWrapper(new AtomicUnit7CreateCommand(req));
		}
		return super.getCreateCommand(req);
	}

}

Back to the top