Package | Description |
---|---|
com.asakusafw.utils.java.internal.model.syntax |
Naive Java DOM implementations.
|
com.asakusafw.utils.java.model.syntax |
Interfaces for representing Java DOMs.
|
Modifier and Type | Class and Description |
---|---|
class |
FormalParameterDeclarationImpl
An implementation of
FormalParameterDeclaration . |
class |
SimpleNameImpl
An implementation of
SimpleName . |
Modifier and Type | Method and Description |
---|---|
List<? extends LambdaParameter> |
LambdaExpressionImpl.getParameters() |
Modifier and Type | Method and Description |
---|---|
LambdaExpression |
ModelFactoryImpl.newLambdaExpression(LambdaParameter parameter,
LambdaBody body) |
Modifier and Type | Method and Description |
---|---|
LambdaExpression |
ModelFactoryImpl.newLambdaExpression(List<? extends LambdaParameter> parameters,
LambdaBody body) |
void |
LambdaExpressionImpl.setParameters(List<? extends LambdaParameter> parameters)
Sets a parameters.
|
Modifier and Type | Interface and Description |
---|---|
interface |
FormalParameterDeclaration
An interface which represents formal parameter declarations.
|
interface |
SimpleName
An interface which represents simple names.
|
Modifier and Type | Method and Description |
---|---|
List<? extends LambdaParameter> |
LambdaExpression.getParameters()
Returns the lambda parameters.
|
Modifier and Type | Method and Description |
---|---|
default LambdaExpression |
ModelFactory.newLambdaExpression(LambdaParameter parameter,
Function<? super SimpleName,? extends LambdaBody> lambda)
Returns a new
LambdaExpression object. |
LambdaExpression |
ModelFactory.newLambdaExpression(LambdaParameter parameter,
LambdaBody body)
Returns a new
LambdaExpression object. |
Modifier and Type | Method and Description |
---|---|
default LambdaExpression |
ModelFactory.newLambdaExpression(List<? extends LambdaParameter> parameters,
Function<? super List<? extends SimpleName>,? extends LambdaBody> lambda)
Returns a new
LambdaExpression object. |
LambdaExpression |
ModelFactory.newLambdaExpression(List<? extends LambdaParameter> parameters,
LambdaBody body)
Returns a new
LambdaExpression object. |
Copyright © 2011–2019 Asakusa Framework Team. All rights reserved.