blob: 06a0d7e47d1a58faf5d34515577b529282b5ab00 [file] [log] [blame]
/*****************************************************************************
* Copyright (c) 2013 CEA LIST.
*
*
* 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:
* Nizar GUEDIDI (CEA LIST) - Initial API and implementation
/*****************************************************************************/
package org.eclipse.papyrus.sysml.diagram.requirement.provider;
import org.eclipse.papyrus.sysml.diagram.requirement.factory.CustomRequirementUMLEditPartFactory;
import org.eclipse.papyrus.uml.diagram.clazz.providers.UMLEditPartProvider;
public class CUMLEditPartProvider extends UMLEditPartProvider {
public CUMLEditPartProvider() {
setFactory(new CustomRequirementUMLEditPartFactory());
setAllowCaching(true);
}
}