lombok.ast.ArrayRef Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of lombok-pg Show documentation
Show all versions of lombok-pg Show documentation
lombok-pg is a collection of extensions to Project Lombok
The newest version!
package lombok.ast;
import lombok.*;
@RequiredArgsConstructor
@Getter
public class ArrayRef extends Expression {
private final Expression> indexed;
private final Expression> index;
@Override
public RETURN_TYPE accept(final ASTVisitor v, final PARAMETER_TYPE p) {
return v.visitArrayRef(this, p);
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy