Changeset 63 in default for v2/trunk/de.ugoe.cs.swe.bnftools.ebnf/xtend-gen/de/ugoe/cs/swe/bnftools/validation
- Timestamp:
- 04/27/14 16:04:29 (11 years ago)
- Location:
- v2/trunk/de.ugoe.cs.swe.bnftools.ebnf/xtend-gen/de/ugoe/cs/swe/bnftools/validation
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
v2/trunk/de.ugoe.cs.swe.bnftools.ebnf/xtend-gen/de/ugoe/cs/swe/bnftools/validation/EbnfValidator.java
r61 r63 26 26 @SuppressWarnings("all") 27 27 public class EbnfValidator extends AbstractEbnfValidator { 28 p rivatefinal static String ruleReferencedOneDescription = "The rule is only referenced by one other rule";29 30 p rivatefinal static String passthroughRuleDescription = "The rule is a passthrough rule";31 32 p rivatefinal static String unreferencedPassthroughRuleDescription = "The rule is an unreferenced passthrough rule";33 34 p rivatefinal static String unusedRuleDescription = "The rule is not referenced anywhere";35 36 p rivatefinal static String equalAlternativeDescription = "The rule contains equal alternatives";37 38 p rivatefinal static String duplicateRulesDescription = "The rule is a duplicate";39 40 p rivatefinal static String nonUniqueNameDescription = "The rule has the same Name as the Rule in Line ";28 public final static String ruleReferencedOneDescription = "The rule is only referenced by one other rule"; 29 30 public final static String passthroughRuleDescription = "The rule is a passthrough rule"; 31 32 public final static String unreferencedPassthroughRuleDescription = "The rule is an unreferenced passthrough rule"; 33 34 public final static String unusedRuleDescription = "The rule is not referenced anywhere"; 35 36 public final static String equalAlternativeDescription = "The rule contains equal alternatives"; 37 38 public final static String duplicateRulesDescription = "The rule is a duplicate"; 39 40 public final static String nonUniqueNameDescription = "The rule has the same Name as the Rule in Line "; 41 41 42 42 /** … … 63 63 } 64 64 if (_and) { 65 this.warning(EbnfValidator.ruleReferencedOneDescription, EbnfPackage.Literals.RULE__NAME); 65 String _name = rule.getName(); 66 this.warning(EbnfValidator.ruleReferencedOneDescription, EbnfPackage.Literals.RULE__NAME, EbnfValidator.ruleReferencedOneDescription, _name); 66 67 } 67 68 } … … 158 159 } 159 160 if (_and) { 160 this.warning(EbnfValidator.unusedRuleDescription, EbnfPackage.Literals.RULE__NAME); 161 String _name = rule.getName(); 162 this.warning(EbnfValidator.unusedRuleDescription, EbnfPackage.Literals.RULE__NAME, EbnfValidator.unusedRuleDescription, _name); 161 163 } 162 164 }
Note: See TracChangeset
for help on using the changeset viewer.