01: package org.directwebremoting.webwork;
02:
03: /**
04: * Interface defining access to a wrapped rendered action result.
05: *
06: * @author <a href='mailto:the_mindstorm[at]evolva[dot]ro'>Alexandru Popescu</a>
07: */
08: public interface AjaxTextResult extends AjaxResult {
09: /**
10: * Gets the string representation of the rendered action result.
11: *
12: * @return string representation of rendered action
13: */
14: String getText();
15: }
|