📄 beanmembersshouldserializerule.java
字号:
/** * BSD-style license; for more info see http://pmd.sourceforge.net/license.html*/package net.sourceforge.pmd.rules;import net.sourceforge.pmd.AbstractRule;import net.sourceforge.pmd.RuleContext;import net.sourceforge.pmd.ast.ASTMethodDeclarator;import net.sourceforge.pmd.ast.ASTUnmodifiedClassDeclaration;import net.sourceforge.pmd.symboltable.VariableNameDeclaration;import java.text.MessageFormat;import java.util.ArrayList;import java.util.Arrays;import java.util.Iterator;public class BeanMembersShouldSerializeRule extends AbstractRule { public Object visit(ASTUnmodifiedClassDeclaration node, Object data) { ArrayList methList = new ArrayList(); node.findChildrenOfType(ASTMethodDeclarator.class, methList); ArrayList getSetMethList = new ArrayList(); for (int i = 0; i < methList.size(); i++){ ASTMethodDeclarator meth = (ASTMethodDeclarator)methList.get(i); String methName = meth.getImage(); if (methName.startsWith("get") || methName.startsWith("set")){ getSetMethList.add(meth); } } String[] methNameArray = new String[getSetMethList.size()]; for (int i = 0; i < getSetMethList.size(); i++){ ASTMethodDeclarator meth = (ASTMethodDeclarator)getSetMethList.get(i); String methName = meth.getImage(); methNameArray[i] = methName; } Arrays.sort(methNameArray); for (Iterator i = node.getScope().getVariableDeclarations(true).keySet().iterator();i.hasNext();) { VariableNameDeclaration decl = (VariableNameDeclaration)i.next(); if (decl.getAccessNodeParent().isTransient()){ //System.out.println("It's Transient!"); continue; } if (decl.getAccessNodeParent().isStatic()){ //System.out.println("It's Static!"); continue; } String varName = decl.getImage(); String firstChar = varName.substring(0,1); //System.out.println("firstChar = " + firstChar); varName = firstChar.toUpperCase() + varName.substring(1,varName.length()); //System.out.println("varName = " + varName); boolean hasGetMethod =false; if (Arrays.binarySearch(methNameArray,"get" + varName) >= 0 ){ hasGetMethod = true; } boolean hasSetMethod = false; if (Arrays.binarySearch(methNameArray,"set" + varName) >= 0 ){ hasSetMethod = true; } if (!hasGetMethod || !hasSetMethod) { //System.out.println("decl.getImage = "+decl.getImage()); RuleContext ctx = (RuleContext)data; ctx.getReport().addRuleViolation(createRuleViolation(ctx, decl.getLine(), MessageFormat.format(getMessage(), new Object[] {decl.getImage()}))); }/* if (decl.getAccessNodeParent().isPrivate() && !decl.getImage().equals("serialVersionUID") && !decl.getImage().equals("serialPersistentFields")) { RuleContext ctx = (RuleContext)data; ctx.getReport().addRuleViolation(createRuleViolation(ctx, decl.getLine(), MessageFormat.format(getMessage(), new Object[] {decl.getImage()}))); }*/ } return super.visit(node, data); }}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -