1 package org.drools.spi;
2
3 import org.drools.rule.Declaration;
4
5 public class TrueCondition implements Condition
6 {
7 public boolean isAllowed(Tuple tuple)
8 {
9 return true;
10 }
11
12 public Declaration[] getRequiredTupleMembers()
13 {
14 return new Declaration[]
15 {
16 /* empty */
17 };
18 }
19 }
This page was automatically generated by Maven