Author: rahul
Date: Mon Oct 2 10:11:48 2006
New Revision: 452126
URL: http://svn.apache.org/viewvc?view=rev&rev=452126
Log:
Should be final.
Modified:
jakarta/commons/proper/scxml/trunk/src/main/java/org/apache/commons/scxml/semantics/ErrorConstants.java
Modified:
jakarta/commons/proper/scxml/trunk/src/main/java/org/apache/commons/scxml/semantics/ErrorConstants.java
URL:
http://svn.apache.org/viewvc/jakarta/commons/proper/scxml/trunk/src/main/java/org/apache/commons/scxml/semantics/ErrorConstants.java?view=diff&rev=452126&r1=452125&r2=452126
==============================================================================
---
jakarta/commons/proper/scxml/trunk/src/main/java/org/apache/commons/scxml/semantics/ErrorConstants.java
(original)
+++
jakarta/commons/proper/scxml/trunk/src/main/java/org/apache/commons/scxml/semantics/ErrorConstants.java
Mon Oct 2 10:11:48 2006
@@ -29,43 +29,43 @@
* @see org.apache.commons.scxml.model.SCXML#getInitialState()
* @see org.apache.commons.scxml.model.State#getInitial()
*/
- public static String NO_INITIAL = "NO_INITIAL";
+ public static final String NO_INITIAL = "NO_INITIAL";
/**
* An initial state for a composite state whose Transition does not.
* Map to a descendant of the composite state.
*
*/
- public static String ILLEGAL_INITIAL = "ILLEGAL_INITIAL";
+ public static final String ILLEGAL_INITIAL = "ILLEGAL_INITIAL";
/**
* Unknown action - unsupported executable content. List of supported.
* actions: assign, cancel, elseif, else, if, log, send, var
*/
- public static String UNKNOWN_ACTION = "UNKNOWN_ACTION";
+ public static final String UNKNOWN_ACTION = "UNKNOWN_ACTION";
/**
* Illegal state machine configuration.
* Either a parallel exists which does not have all its AND sub-states
* active or there are multiple enabled OR states on the same level.
*/
- public static String ILLEGAL_CONFIG = "ILLEGAL_CONFIG";
+ public static final String ILLEGAL_CONFIG = "ILLEGAL_CONFIG";
/**
* Non-deterministic situation has occured - there are more than
* one enabled transitions in conflict.
*/
- public static String NON_DETERMINISTIC = "NON_DETERMINISTIC";
+ public static final String NON_DETERMINISTIC = "NON_DETERMINISTIC";
/**
* A variable referred to by assign name attribute is undefined.
*/
- public static String UNDEFINED_VARIABLE = "UNDEFINED_VARIABLE";
+ public static final String UNDEFINED_VARIABLE = "UNDEFINED_VARIABLE";
/**
* An expression language error.
*/
- public static String EXPRESSION_ERROR = "EXPRESSION_ERROR";
+ public static final String EXPRESSION_ERROR = "EXPRESSION_ERROR";
//---------------------------------------------- STATIC CONSTANTS ONLY
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]