Home | History | Annotate | Download | only in expr

Lines Matching refs:NodeList

24 import com.github.javaparser.ast.NodeList;
58 private NodeList<Type> typeArguments;
62 private NodeList<Expression> arguments;
65 this(null, null, new NodeList<>(), new SimpleName(), new NodeList<>());
69 this(null, null, new NodeList<>(), new SimpleName(name), new NodeList<>(arguments));
73 this(null, scope, new NodeList<>(), new SimpleName(name), new NodeList<>());
77 this(null, scope, new NodeList<>(), name, new NodeList<>());
80 public MethodCallExpr(final Expression scope, final String name, final NodeList<Expression> arguments) {
81 this(null, scope, new NodeList<>(), new SimpleName(name), arguments);
84 public MethodCallExpr(final Expression scope, final SimpleName name, final NodeList<Expression> arguments) {
85 this(null, scope, new NodeList<>(), name, arguments);
89 public MethodCallExpr(final Expression scope, final NodeList<Type> typeArguments, final SimpleName name, final NodeList<Expression> arguments) {
97 public MethodCallExpr(TokenRange tokenRange, Expression scope, NodeList<Type> typeArguments, SimpleName name, NodeList<Expression> arguments) {
119 public NodeList<Expression> getArguments() {
134 public MethodCallExpr setArguments(final NodeList<Expression> arguments) {
175 public Optional<NodeList<Type>> getTypeArguments() {
186 public MethodCallExpr setTypeArguments(final NodeList<Type> typeArguments) {