@Override public String toString() { final StringBuilder sb = new StringBuilder(); for (final UserFunc f : funcs) sb.append(f.toString()); return sb.toString(); }
/** * Checks if the function performs updates. * * @throws QueryException query exception */ public void checkUp() throws QueryException { for (final UserFunc f : funcs) f.checkUp(); }