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