Author: rahul
Date: Wed Jan 9 12:33:54 2008
New Revision: 610548
URL: http://svn.apache.org/viewvc?rev=610548&view=rev
Log:
Type safety improvement.
Modified:
commons/proper/scxml/branches/J5/src/main/java/org/apache/commons/scxml/SCXMLSemantics.java
Modified:
commons/proper/scxml/branches/J5/src/main/java/org/apache/commons/scxml/SCXMLSemantics.java
URL:
http://svn.apache.org/viewvc/commons/proper/scxml/branches/J5/src/main/java/org/apache/commons/scxml/SCXMLSemantics.java?rev=610548&r1=610547&r2=610548&view=diff
==============================================================================
---
commons/proper/scxml/branches/J5/src/main/java/org/apache/commons/scxml/SCXMLSemantics.java
(original)
+++
commons/proper/scxml/branches/J5/src/main/java/org/apache/commons/scxml/SCXMLSemantics.java
Wed Jan 9 12:33:54 2008
@@ -21,6 +21,7 @@
import org.apache.commons.scxml.model.ModelException;
import org.apache.commons.scxml.model.SCXML;
+import org.apache.commons.scxml.model.TransitionTarget;
/**
* <p>The purpose of this interface is to separate the interpretation algorithm
@@ -73,8 +74,8 @@
* @throws ModelException
* in case there is a fatal SCXML object model problem.
*/
- void determineInitialStates(final SCXML input, final Set states,
- final List entryList, final ErrorReporter errRep,
+ void determineInitialStates(final SCXML input, final Set<TransitionTarget>
states,
+ final List<TransitionTarget> entryList, final ErrorReporter errRep,
final SCInstance scInstance)
throws ModelException;