com.borland.jbuilder.jot
Interface JotReturn

All Superinterfaces:
JotMarker, JotSourceElement, JotStatement

public interface JotReturn
extends JotStatement

This interface represents a return statement. See section 14.15 in the Java Language Specification for more information.


Method Summary
 JotExpression getExpression()
          Returns a JotExpression object representing the return value of the containing method.
 
Methods inherited from interface com.borland.jbuilder.jot.JotStatement
getCodeBlock, getStatements
 
Methods inherited from interface com.borland.jbuilder.jot.JotMarker
addUserData, getEndPosition, getStartPosition, getUserData
 
Methods inherited from interface com.borland.jbuilder.jot.JotSourceElement
getIndentLevel, getParent, getText, isModified, setModified, setText
 

Method Detail

getExpression

public JotExpression getExpression()
Returns a JotExpression object representing the return value of the containing method. Returns null if the containing method returns no value.