Skip to content
Snippets Groups Projects
code_specification.html 1.38 KiB
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">

<!--
 Documentation of Creating a Code Specification for a Component.
 
 @author becker
 @ConQAT.Rating GREEN Hash: EE5DC9DDEA7B859D0B83504DECB1B455
-->
 
<html>
<head>
	<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
	<title>Creating a Code Specification using AutoFOCUS3 (AF3)</title>
</head>
<body>

<h2><u><font color="#336699">Creating a Code Specification for a Component</font></u></h2>

If you added a Code Specification to a Component, you are able to specify the behavior of that component on code level.

<br><br>
<img src="./pictures/CodeSpecification.png">
<br><br>

<!--
if (mergeA == Present( )) {
	mergeReq = Present( );
	return;
}
if (mergeB == Present( )) {
	mergeReq = Present( );
}
-->

The Code Specification View also provides Syntax-Checking and marks invalid code with a little red error-marker.
Move your mouse over this error-marker and you will get an info-text about at which position in the code the error is found and what kind of error it is.
Only the first error in your code is marked. If you remove this error, the next error will be marked.

<br><br>
<img src="./pictures/CodeSpecification.Errors.png">
<br><br>

Things to note:
<ul><li>Variables can not be defined in a code specification.</li>
<li>Code specifications do not return a value.</li></ul>
<br><br>

</font>
</body>
</html>