| |
|
| java.lang.Object javaparser.Parameter
Parameter | public class Parameter (Code) | | The parameter of a method or constructor of a for loop
or a field in a class.
|
linecol | public int linecol(Code) | | |
isParameterAfterLine | public boolean isParameterAfterLine(int _line)(Code) | | |
parseFromForStatementDeclaration | public static Parameter parseFromForStatementDeclaration(RAWParserTreeNode forDeclarationNode)(Code) | | occurs in field declarations
type 1: for(String s : args) {}
type 2: for(int i=0; i<12; i++) {}
variant: for(; i<12; i++) {} no ForInit
|
parseFromFormalParamNode | public static Parameter parseFromFormalParamNode(RAWParserTreeNode formalParameterNode)(Code) | | Occurs in methods and constructors
parsed during simplified syntax tree construction
|
toString | public String toString()(Code) | | appears in the symplified syntax tree !
|
|
|
|