*/
static class SetDescription extends ROperator {
SetDescription() { super("setdescription"); }
public void execute(DTState state) throws RulesException {
RString description = state.datapop().rStringValue();
RTable table = state.datapop().rTableValue();
table.setDescription(description);
}