blob: 9e74d42dd03040ff8cf9b81c50d6c3a54cdb924a [file] [log] [blame]
/*****************************************************************************
* Copyright (c) 2009 Atos Origin.
*
*
* 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:
* Emilien Perico (Atos Origin) emilien.perico@atosorigin.com - Initial API and implementation
* Laurent Wouters (CEA LIST) laurent.wouters@cea.fr - Viewpoints application
*
*****************************************************************************/
package org.eclipse.papyrus.sysml.diagram.requirement;
import org.eclipse.emf.ecore.EObject;
import org.eclipse.papyrus.infra.ui.extension.commands.PerspectiveContextDependence;
/**
* RequirementDiagramCondition to set conditions for the diagram creation
*/
public class RequirementDiagramCreationCondition extends PerspectiveContextDependence {
/**
* {@inheritDoc}
*/
@Override
public boolean create(EObject selectedElement) {
return false;
}
}