本文整理汇总了Java中com.puppycrawl.tools.checkstyle.checks.regexp.RegexpSinglelineJavaCheck类的典型用法代码示例。如果您正苦于以下问题:Java RegexpSinglelineJavaCheck类的具体用法?Java RegexpSinglelineJavaCheck怎么用?Java RegexpSinglelineJavaCheck使用的例子?那么, 这里精选的类代码示例或许可以为您提供帮助。
RegexpSinglelineJavaCheck类属于com.puppycrawl.tools.checkstyle.checks.regexp包,在下文中一共展示了RegexpSinglelineJavaCheck类的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。
示例1: getCheckMessages
import com.puppycrawl.tools.checkstyle.checks.regexp.RegexpSinglelineJavaCheck; //导入依赖的package包/类
/**
* Get's the check's messages.
* @param module class to examine.
* @return a set of checkstyle's module message fields.
* @throws ClassNotFoundException if the attempt to read a protected class fails.
*/
public static Set<Field> getCheckMessages(Class<?> module) throws ClassNotFoundException {
final Set<Field> checkstyleMessages = new HashSet<>();
// get all fields from current class
final Field[] fields = module.getDeclaredFields();
for (Field field : fields) {
if (field.getName().startsWith("MSG_")) {
checkstyleMessages.add(field);
}
}
// deep scan class through hierarchy
final Class<?> superModule = module.getSuperclass();
if (superModule != null) {
checkstyleMessages.addAll(getCheckMessages(superModule));
}
// special cases that require additional classes
if (module == RegexpMultilineCheck.class) {
checkstyleMessages.addAll(getCheckMessages(Class
.forName("com.puppycrawl.tools.checkstyle.checks.regexp.MultilineDetector")));
}
else if (module == RegexpSinglelineCheck.class
|| module == RegexpSinglelineJavaCheck.class) {
checkstyleMessages.addAll(getCheckMessages(Class
.forName("com.puppycrawl.tools.checkstyle.checks.regexp.SinglelineDetector")));
}
return checkstyleMessages;
}
示例2: getCheckMessages
import com.puppycrawl.tools.checkstyle.checks.regexp.RegexpSinglelineJavaCheck; //导入依赖的package包/类
/**
* Get's the check's messages.
* @param module class to examine.
* @return a set of checkstyle's module message fields.
* @throws ClassNotFoundException if the attempt to read a protected class fails.
*/
public static Set<Field> getCheckMessages(Class<?> module) throws ClassNotFoundException {
final Set<Field> checkstyleMessages = new HashSet<Field>();
// get all fields from current class
final Field[] fields = module.getDeclaredFields();
for (Field field : fields) {
if (field.getName().startsWith("MSG_")) {
checkstyleMessages.add(field);
}
}
// deep scan class through hierarchy
final Class<?> superModule = module.getSuperclass();
if (superModule != null) {
checkstyleMessages.addAll(getCheckMessages(superModule));
}
// special cases that require additional classes
if (module == RegexpMultilineCheck.class) {
checkstyleMessages.addAll(getCheckMessages(Class
.forName("com.puppycrawl.tools.checkstyle.checks.regexp.MultilineDetector")));
}
else if (module == RegexpSinglelineCheck.class
|| module == RegexpSinglelineJavaCheck.class) {
checkstyleMessages.addAll(getCheckMessages(Class
.forName("com.puppycrawl.tools.checkstyle.checks.regexp.SinglelineDetector")));
}
return checkstyleMessages;
}