01: package com.xoetrope.survey;
02:
03: import net.xoetrope.xml.XmlElement;
04: import java.util.Vector;
05:
06: /**
07: *
08: * <p> Copyright (c) Xoetrope Ltd., 2001-2006, This software is licensed under
09: * the GNU Public License (GPL), please see license.txt for more details. If
10: * you make commercial use of this software you must purchase a commercial
11: * license from Xoetrope.</p>
12: * <p> $Revision: 1.5 $</p>
13: */
14: public interface RuleEngine {
15: public void handleAnswer(int group, Condition response,
16: XmlElement rules);
17:
18: public void handleGroup(QuestionGroup group, Vector responses,
19: XmlElement rules);
20: }
|