public class MethodFrame extends JavaStatement implements Statement, StatementContainer, ProgramPrefix
| Modifier and Type | Field and Description | 
|---|---|
private StatementBlock | 
body
Body. 
 | 
private IExecutionContext | 
execContext  | 
private PosInProgram | 
firstActiveChildPos  | 
private MethodFrame | 
innerMostMethodFrame  | 
private int | 
prefixLength  | 
private IProgramVariable | 
resultVar
result 
 | 
| Constructor and Description | 
|---|
MethodFrame(IProgramVariable resultVar,
           IExecutionContext execContext,
           StatementBlock body)
Labeled statement. 
 | 
MethodFrame(IProgramVariable resultVar,
           IExecutionContext execContext,
           StatementBlock body,
           PositionInfo pos)
Labeled statement. 
 | 
| Modifier and Type | Method and Description | 
|---|---|
StatementBlock | 
getBody()
Get body. 
 | 
ProgramElement | 
getChildAt(int index)
Returns the child at the specified index in this node's "virtual"
      child array 
 | 
int | 
getChildCount()
Returns the number of children of this node. 
 | 
IExecutionContext | 
getExecutionContext()
returns the execution context for the elements in the method
 frame's body 
 | 
PosInProgram | 
getFirstActiveChildPos()
returns the position of the first active child 
 | 
SourceElement | 
getFirstElement()
Finds the source element that occurs first in the source. 
 | 
SourceElement | 
getFirstElementIncludingBlocks()
Finds the source element that occurs first in the source. 
 | 
MethodFrame | 
getInnerMostMethodFrame()
returns the inner most  
MethodFrame | 
SourceElement | 
getLastElement()
Finds the source element that occurs last in the source. 
 | 
ProgramPrefix | 
getLastPrefixElement()
return the last prefix element 
 | 
ProgramPrefix | 
getNextPrefixElement()
return the next prefix element 
 if no next prefix element is available an IndexOutOfBoundsException is thrown 
 | 
ImmutableArray<ProgramPrefix> | 
getPrefixElements()
returns an array with all prefix elements starting at 
 this element 
 | 
int | 
getPrefixLength()
returns the length of the prefix 
 | 
IProgramMethod | 
getProgramMethod()
Get method. 
 | 
IProgramVariable | 
getProgramVariable()
Get the method call header. 
 | 
Statement | 
getStatementAt(int index)
Return the statement at the specified index in this node's
       "virtual" statement array. 
 | 
int | 
getStatementCount()
Get the number of statements in this container. 
 | 
boolean | 
hasNextPrefixElement()
return true if there is a next prefix element 
 | 
void | 
prettyPrint(PrettyPrinter p)
Pretty printing the source element. 
 | 
void | 
visit(Visitor v)
calls the corresponding method of a visitor in order to
 perform some action/transformation on this element 
 | 
compatibleBlockSize, computeHashCode, equals, equalsModRenaming, getArrayPos, match, matchChildrengetComments, hashCode, prettyPrintMain, reuseSignaturegetEndPosition, getParentClass, getPositionInfo, getRelativePosition, getStartPosition, setParentClass, toSource, toString, toStringclone, finalize, getClass, notify, notifyAll, wait, wait, waitgetComments, matchequalsModRenaming, getEndPosition, getPositionInfo, getRelativePosition, getStartPositionprivate final IProgramVariable resultVar
private final StatementBlock body
private final IExecutionContext execContext
private final PosInProgram firstActiveChildPos
private final int prefixLength
private final MethodFrame innerMostMethodFrame
public MethodFrame(IProgramVariable resultVar, IExecutionContext execContext, StatementBlock body)
resultVar - the ProgramVariable the return value is assigned tobody - a Statement containing the method body of
      the called methodpublic MethodFrame(IProgramVariable resultVar, IExecutionContext execContext, StatementBlock body, PositionInfo pos)
resultVar - the ProgramVariable the return value is assigned tobody - a Statement containing the method body of
      the called methodpublic boolean hasNextPrefixElement()
ProgramPrefixhasNextPrefixElement in interface ProgramPrefixpublic ProgramPrefix getNextPrefixElement()
ProgramPrefixgetNextPrefixElement in interface ProgramPrefixpublic ProgramPrefix getLastPrefixElement()
ProgramPrefixgetLastPrefixElement in interface ProgramPrefixpublic int getPrefixLength()
ProgramPrefixgetPrefixLength in interface ProgramPrefixpublic MethodFrame getInnerMostMethodFrame()
ProgramPrefixMethodFramegetInnerMostMethodFrame in interface ProgramPrefixpublic ImmutableArray<ProgramPrefix> getPrefixElements()
ProgramPrefixgetPrefixElements in interface ProgramPrefixpublic PosInProgram getFirstActiveChildPos()
ProgramPrefixgetFirstActiveChildPos in interface ProgramPrefixpublic SourceElement getFirstElement()
JavaSourceElementgetFirstElement in interface SourceElementgetFirstElement in class JavaSourceElementJavaSourceElement.toSource(), 
JavaSourceElement.getStartPosition()public SourceElement getFirstElementIncludingBlocks()
SourceElementgetFirstElementIncludingBlocks in interface SourceElementgetFirstElementIncludingBlocks in class JavaSourceElementSourceElement.getStartPosition()public SourceElement getLastElement()
JavaSourceElementgetLastElement in interface SourceElementgetLastElement in class JavaSourceElementJavaSourceElement.toSource(), 
JavaSourceElement.getEndPosition()public IProgramVariable getProgramVariable()
public IExecutionContext getExecutionContext()
public StatementBlock getBody()
public IProgramMethod getProgramMethod()
public int getChildCount()
getChildCount in interface NonTerminalProgramElementpublic ProgramElement getChildAt(int index)
getChildAt in interface NonTerminalProgramElementindex - an index into this node's "virtual" child arrayjava.lang.ArrayIndexOutOfBoundsException - if index is out
                 of boundspublic int getStatementCount()
getStatementCount in interface StatementContainerpublic Statement getStatementAt(int index)
getStatementAt in interface StatementContainerindex - an index for a statement.java.lang.ArrayIndexOutOfBoundsException - if index is out
       of bounds.public void visit(Visitor v)
visit in interface SourceElementv - the Visitorpublic void prettyPrint(PrettyPrinter p) throws java.io.IOException
JavaSourceElementprettyPrint in interface SourceElementprettyPrint in class JavaProgramElementp - a pretty printer.java.io.IOException - occasionally thrown.