blob: ab6d89f8c321ead6f33386ebc44fa541ad76a057 [file] [log] [blame]
/*****************************************************************************
* Copyright (c) 2017 CEA LIST and Thales
*
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License 2.0
* which accompanies this distribution, and is available at
* https://www.eclipse.org/legal/epl-2.0/
*
* SPDX-License-Identifier: EPL-2.0
*
* Contributors:
* CEA LIST - Initial API and implementation
* Ansgar Radermacher
*
*****************************************************************************/
package org.eclipse.papyrus.robotics.core.types;
/**
* Declaration of all constants for robotic element types.
*/
public interface IRoboticElementTypes {
public static final String PREFIX = "org.eclipse.papyrus.robotics."; //$NON-NLS-1$
public static final String COMPONENT_SERVICE_ID = PREFIX + "ComponentService"; //$NON-NLS-1$
public static final String IN_ATTRIBUTE_ID = PREFIX + "InAttribute"; //$NON-NLS-1$
public static final String OUT_ATTRIBUTE_ID = PREFIX + "OutAttribute"; //$NON-NLS-1$
public static final String SKILL_RESULT_ID = PREFIX + "SkillResult"; //$NON-NLS-1$
public static final String PARAM_ENTRY_ID = PREFIX + "ParameterEntry"; //$NON-NLS-1$
}