1 package org.drools.spi;
2
3 public class MockObjectType implements ObjectType
4 {
5 private boolean matches;
6
7 public MockObjectType(boolean matches)
8 {
9 this.matches = matches;
10 }
11
12 public boolean matches(Object object)
13 {
14 return this.matches;
15 }
16 }
This page was automatically generated by Maven