1 package org.directwebremoting.webwork;2 3 /**4 * Interface defining access to a wrapped rendered action result.5 *6 * @author <a HREF='mailto:the_mindstorm[at]evolva[dot]ro'>Alexandru Popescu</a>7 */8 public interface AjaxTextResult extends AjaxResult9 {10 /**11 * Gets the string representation of the rendered action result.12 *13 * @return string representation of rendered action14 */15 String getText();16 }17