01: package org.drools.decisiontable.parser;
02:
03: /**
04: * This is for building up LHS and RHS code for a rule row.
05: * @author Michael Neale
06: */
07: public interface SourceBuilder {
08: String getResult();
09:
10: void addTemplate(int col, String content);
11:
12: void addCellValue(int col, String value);
13:
14: void clearValues();
15:
16: boolean hasValues();
17: }
|