blob: 64816f29cf90fddc447d9432aa091ccb75327620 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2016 ALL4TEC & 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:
* ALL4TEC & CEA LIST - initial API and implementation
******************************************************************************/
package org.polarsys.esf.safetyreq.table.set;
/**
* ESFSafetyRequirements tables set.
*
* @author $Author: ymunoz $
* @version $Revision: 168 $
*/
public final class ESFSafetyRequirementsTablesSet {
/**
* ESFSafetyRequirements Table Table ID.
* NOTE: The ID must be the same in:
* - ESFSafetyRequirementsTable.configuration
* - ESFSafetyRequirementsTable.nattableconfiguration
*/
public static final String SAFETYREQ_TABLE_ID =
"ESFSafetyRequirementsTable"; //$NON-NLS-1$
/**
* ESFSafetyRequirements Table name.
* NOTE: The name must be the same in:
* - ESFSafetyRequirementsTable.nattableconfiguration
*/
public static final String SAFETYREQ_TABLE_NAME =
"ESFSafetyReqTable"; //$NON-NLS-1$
/**
* Default constructor, private as it's a utility class.
*/
private ESFSafetyRequirementsTablesSet() {
// Nothing to do
}
}