Skip to content
GitLab
Menu
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
af3
AF3
Commits
4d766fea
Commit
4d766fea
authored
Jul 15, 2012
by
Daniel Ratiu
Browse files
small improvements of the message
refs 884
parent
6f42ebb4
Changes
2
Show whitespace changes
Inline
Side-by-side
org.fortiss.af3.state/trunk/src/org/fortiss/af3/state/constraint/ConstraintMessage.java
View file @
4d766fea
...
...
@@ -29,7 +29,7 @@ import org.fortiss.tooling.kernel.extension.base.ConstraintViolationBase;
* @author hoelzl
* @author $Author$
* @version $Rev$
* @ConQAT.Rating YELLOW Hash:
D55B5CB814ED2E5CC6408CF4FC68A492
* @ConQAT.Rating YELLOW Hash:
CD72BAF25CB0AC0DB0D44CB862456681
*/
final
class
ConstraintMessage
{
...
...
@@ -62,6 +62,7 @@ final class ConstraintMessage {
TransitionSegment
segment
,
StateAutomaton
automaton
)
{
return
new
ConstraintViolationBase
<
TransitionSegment
>(
segment
,
ERROR
,
"Transition "
+
segment
.
getName
()
+
" in automaton of component "
+
automaton
.
getComponent
().
getName
()
+
" has not connected to atomic state."
);
automaton
.
getComponent
().
getName
()
+
" has a terminating connection point in a non-atomic state."
);
}
}
org.fortiss.af3.state/trunk/src/org/fortiss/af3/state/constraint/StateAutomatonConstraintChecker.java
View file @
4d766fea
...
...
@@ -40,7 +40,7 @@ import org.fortiss.tooling.kernel.extension.data.IConstraintViolation;
* @author hoelzl
* @author $Author$
* @version $Rev$
* @ConQAT.Rating YELLOW Hash:
2712669752170D82A55D4EBB35425721
* @ConQAT.Rating YELLOW Hash:
5B6D97C957039BECA204AC354951C6D4
*/
public
class
StateAutomatonConstraintChecker
extends
ConstraintCheckerBase
<
StateAutomaton
>
{
...
...
@@ -61,7 +61,7 @@ public class StateAutomatonConstraintChecker extends ConstraintCheckerBase<State
return
result
;
}
/** Checks that no chain of transi
s
tion segments ends or starts in a non-atomic state. */
/** Checks that no chain of transition segments ends or starts in a non-atomic state. */
private
void
doLooseTransitionSegmentCheck
(
StateAutomaton
modelElement
,
List
<
IConstraintViolation
<?
extends
EObject
>>
result
)
{
for
(
Iterator
<
EObject
>
iter
=
modelElement
.
eAllContents
();
iter
.
hasNext
();)
{
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment