io.codemodder.codemods.DeclareVariableOnSeparateLineForFieldDeclaration Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of core-codemods Show documentation
Show all versions of core-codemods Show documentation
Codemods for fixing common errors across many Java projects
package io.codemodder.codemods;
import com.github.javaparser.ast.Node;
import com.github.javaparser.ast.NodeList;
import com.github.javaparser.ast.body.BodyDeclaration;
import com.github.javaparser.ast.body.ClassOrInterfaceDeclaration;
import com.github.javaparser.ast.body.FieldDeclaration;
import com.github.javaparser.ast.body.VariableDeclarator;
import java.util.ArrayList;
import java.util.List;
import java.util.Objects;
import java.util.Optional;
final class DeclareVariableOnSeparateLineForFieldDeclaration extends DeclareVariableOnSeparateLine {
private final FieldDeclaration fieldDeclaration;
DeclareVariableOnSeparateLineForFieldDeclaration(final FieldDeclaration parentNode) {
super(parentNode);
this.fieldDeclaration = Objects.requireNonNull(parentNode);
}
/**
* Returns a list of {@link FieldDeclaration} nodes created from a list of {@link
* VariableDeclarator}s.
*/
protected List createVariableNodesToAdd(List inlineVariables) {
final List nodesToAdd = new ArrayList<>();
for (VariableDeclarator inlineVariable : inlineVariables) {
final FieldDeclaration newFieldDeclaration =
new FieldDeclaration(
fieldDeclaration.getModifiers(),
((FieldDeclaration) parentNode).getAnnotations(),
new NodeList<>(inlineVariable));
nodesToAdd.add(newFieldDeclaration);
}
return nodesToAdd;
}
/**
* Adds a list of nodes to the parent node {@link ClassOrInterfaceDeclaration} after the
* fieldDeclaration.
*/
protected boolean addNewNodesToParentNode(List nodesToAdd) {
final Optional classOrInterfaceDeclarationOptional = fieldDeclaration.getParentNode();
if (classOrInterfaceDeclarationOptional.isPresent()
&& classOrInterfaceDeclarationOptional.get()
instanceof ClassOrInterfaceDeclaration classOrInterfaceDeclaration) {
final List> allMembers =
insertNodesAfterReference(
classOrInterfaceDeclaration.getMembers().stream().toList(),
fieldDeclaration,
nodesToAdd);
classOrInterfaceDeclaration.setMembers(new NodeList<>(allMembers));
return true;
}
return false;
}
}