Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'extraplugins/dsml.validation/org.eclipse.papyrus.dsml.validation/src/org/eclipse/papyrus/dsml/validation/IDSMLValidation.java')
-rw-r--r--extraplugins/dsml.validation/org.eclipse.papyrus.dsml.validation/src/org/eclipse/papyrus/dsml/validation/IDSMLValidation.java36
1 files changed, 18 insertions, 18 deletions
diff --git a/extraplugins/dsml.validation/org.eclipse.papyrus.dsml.validation/src/org/eclipse/papyrus/dsml/validation/IDSMLValidation.java b/extraplugins/dsml.validation/org.eclipse.papyrus.dsml.validation/src/org/eclipse/papyrus/dsml/validation/IDSMLValidation.java
index f83e431f8ab..e8ee1c9ef57 100644
--- a/extraplugins/dsml.validation/org.eclipse.papyrus.dsml.validation/src/org/eclipse/papyrus/dsml/validation/IDSMLValidation.java
+++ b/extraplugins/dsml.validation/org.eclipse.papyrus.dsml.validation/src/org/eclipse/papyrus/dsml/validation/IDSMLValidation.java
@@ -1,7 +1,7 @@
/*****************************************************************************
* Copyright (c) 2012 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
@@ -14,42 +14,42 @@
package org.eclipse.papyrus.dsml.validation;
/**
- * This interface contains all constants to work with the profile DSMLValidationRule
+ * This interface contains all constants to work with the profile DSMLValidationRule
*
*/
public interface IDSMLValidation {
/** Qualified name of the stereotype ValidationRule */
public static final String VALIDATIONRULE_STEREOTYPE = "PapyrusDSMLValidationRule::ValidationRule";
- /** name of property severity of the stereotype ValidationRule */
+ /** name of property severity of the stereotype ValidationRule */
public static final String VALIDATIONRULE_SEVERITY_ATT = "severity";
- /** name of property mode of the stereotype ValidationRule */
+ /** name of property mode of the stereotype ValidationRule */
public static final String VALIDATIONRULE_MODE_ATT = "mode";
- /** name of property isEnabledByDefault of the stereotype ValidationRule */
+ /** name of property isEnabledByDefault of the stereotype ValidationRule */
public static final String VALIDATIONRULE_ISENABLEDBYDEFAULT_ATT = "isEnabledByDefault";
- /** name of property base_Constraint of the stereotype ValidationRule */
+ /** name of property base_Constraint of the stereotype ValidationRule */
public static final String VALIDATIONRULE_BASE_CONSTRAINT_ATT = "base_Constraint";
- /** name of property statusCode of the stereotype ValidationRule */
+ /** name of property statusCode of the stereotype ValidationRule */
public static final String VALIDATIONRULE_STATUSCODE_ATT = "statusCode";
- /** name of property message of the stereotype ValidationRule */
+ /** name of property message of the stereotype ValidationRule */
public static final String VALIDATIONRULE_MESSAGE_ATT = "message";
- /** name of property description of the stereotype ValidationRule */
+ /** name of property description of the stereotype ValidationRule */
public static final String VALIDATIONRULE_DESCRIPTION_ATT = "description";
- /** name of property target of the stereotype ValidationRule */
+ /** name of property target of the stereotype ValidationRule */
public static final String VALIDATIONRULE_TARGET_ATT = "target";
- /** name of property class of the stereotype ValidationRule */
+ /** name of property class of the stereotype ValidationRule */
public static final String VALIDATIONRULE_CLASS_ATT = "class";
- /** name of property id of the stereotype ValidationRule */
+ /** name of property id of the stereotype ValidationRule */
public static final String VALIDATIONRULE_ID_ATT = "id";
- /** name of literal ERROR of the Enumeration Severity */
+ /** name of literal ERROR of the Enumeration Severity */
public static final String SEVERITY_ERROR_ENUM = "ERROR";
- /** name of literal WARNING of the Enumeration Severity */
+ /** name of literal WARNING of the Enumeration Severity */
public static final String SEVERITY_WARNING_ENUM = "WARNING";
- /** name of literal INFO of the Enumeration Severity */
+ /** name of literal INFO of the Enumeration Severity */
public static final String SEVERITY_INFO_ENUM = "INFO";
- /** name of literal CANCEL of the Enumeration Severity */
+ /** name of literal CANCEL of the Enumeration Severity */
public static final String SEVERITY_CANCEL_ENUM = "CANCEL";
- /** name of literal Batch of the Enumeration Mode */
+ /** name of literal Batch of the Enumeration Mode */
public static final String MODE_BATCH_ENUM = "Batch";
- /** name of literal Live of the Enumeration Mode */
+ /** name of literal Live of the Enumeration Mode */
public static final String MODE_LIVE_ENUM = "Live";
}

Back to the top