org.directwebremoting.extend
Interface OutboundVariable

All Known Implementing Classes:
AbstractOutboundVariable, ArrayOutboundVariable, ErrorOutboundVariable, ObjectOutboundVariable, ReferenceOutboundVariable, SimpleOutboundVariable

public interface OutboundVariable

A simple data container for 2 strings that comprise information about how a Java object has been converted into Javascript.

Author:
Joe Walker [joe at getahead dot ltd dot uk]

Method Summary
 java.lang.String getAssignCode()
           
 java.lang.String getBuildCode()
           
 java.lang.String getDeclareCode()
           
 OutboundVariable getReferenceVariable()
          Get a reference to this OutboundVariable.
 

Method Detail

getBuildCode

java.lang.String getBuildCode()
Returns:
Returns the buildCode.

getDeclareCode

java.lang.String getDeclareCode()
Returns:
Returns the declareCode

getAssignCode

java.lang.String getAssignCode()
Returns:
Returns the assignCode.

getReferenceVariable

OutboundVariable getReferenceVariable()
Get a reference to this OutboundVariable. If this already is a reference then this method returns this, or if not it creates one that does.

Returns:
An OutboundVariable that refers to this one.