The RuleSet statement is the outer-most statement in a source rule file. Comments may appear before, within, and after the RuleSet statement. All other rule language statements must appear within the RuleSet statement.
Syntax
RuleSet <name> (
<rule language statements>+
)
Parameters
Example
The following ruleset is preceded by a few comment statements and has the name myRuleSet_1A:
//------------------------------------------
// A ruleset to amaze and astound the world!
//------------------------------------------
RuleSet myRuleset_1A (
.
.
.
)
|