KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > directwebremoting > webwork > AjaxDataResult


1 package org.directwebremoting.webwork;
2
3 /**
4  * Interface defining access to a wrapped action result.
5  *
6  * @author <a HREF='mailto:the_mindstorm[at]evolva[dot]ro'>Alexandru Popescu</a>
7  */

8 public interface AjaxDataResult extends AjaxResult
9 {
10     /**
11      * Access the wrapped result. Usually this is an action instance.
12      *
13      * @return wrapped result
14      */

15     Object JavaDoc getData();
16 }
17
Popular Tags