Return the Rules implementation object containing our rules collection and associated matching policy. If none has been established, a default implementation will be created and returned. @return the rules
()
| 822 | * @return the rules |
| 823 | */ |
| 824 | public Rules getRules() { |
| 825 | if (this.rules == null) { |
| 826 | this.rules = new RulesBase(); |
| 827 | this.rules.setDigester(this); |
| 828 | } |
| 829 | return this.rules; |
| 830 | } |
| 831 | |
| 832 | |
| 833 | /** |
no test coverage detected