Class ActionResult


  • public class ActionResult
    extends java.lang.Object
    The Class ActionResult.

    Created: 2008. 03. 23 PM 12:01:24

    • Field Summary

      Fields 
      Modifier and Type Field Description
      static java.lang.Object NO_RESULT  
    • Constructor Summary

      Constructors 
      Constructor Description
      ActionResult​(ContentResult parent)
      Instantiates a new Action result.
    • Method Summary

      All Methods Instance Methods Concrete Methods 
      Modifier and Type Method Description
      java.lang.String getActionId()
      Gets the action id.
      ContentResult getParent()
      Gets the parent.
      java.lang.Object getResultValue()
      Gets the result value of an action.
      boolean isHidden()
      Returns whether or not to expose this action's result.
      void setActionId​(java.lang.String actionId)
      Sets the action id.
      void setHidden​(boolean hidden)
      Sets whether or not to hide the result of this action.
      void setResultValue​(java.lang.Object resultValue)
      Sets the result value of an action.
      java.lang.String toString()  
      • Methods inherited from class java.lang.Object

        clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
    • Field Detail

      • NO_RESULT

        public static final java.lang.Object NO_RESULT
    • Constructor Detail

      • ActionResult

        public ActionResult​(ContentResult parent)
        Instantiates a new Action result.
        Parameters:
        parent - the parent result
    • Method Detail

      • getParent

        public ContentResult getParent()
        Gets the parent.
        Returns:
        the parent result
      • getActionId

        public java.lang.String getActionId()
        Gets the action id.
        Returns:
        the action id
      • setActionId

        public void setActionId​(java.lang.String actionId)
        Sets the action id.
        Parameters:
        actionId - the new action id
      • getResultValue

        public java.lang.Object getResultValue()
        Gets the result value of an action.
        Returns:
        the result value of an action
      • setResultValue

        public void setResultValue​(java.lang.Object resultValue)
        Sets the result value of an action.
        Parameters:
        resultValue - the new result value of an action
      • isHidden

        public boolean isHidden()
        Returns whether or not to expose this action's result.
        Returns:
        true if hide this action result; false otherwise
      • setHidden

        public void setHidden​(boolean hidden)
        Sets whether or not to hide the result of this action.
        Parameters:
        hidden - whether to hide this action result
      • toString

        public java.lang.String toString()
        Overrides:
        toString in class java.lang.Object