/**
* This will add the rule for compiling later on.
* It will not actually call the compiler
*/
public void addProcess(final ProcessBuildContext context) {
ProcessClassBuilder classBuilder = context.getDialect().getProcessClassBuilder();
String processClass = classBuilder.buildRule( context );
if ( processClass == null ) {
// nothing to compile.
return;
}