本文整理汇总了Java中com.puppycrawl.tools.checkstyle.api.AuditEvent.getSourceName方法的典型用法代码示例。如果您正苦于以下问题:Java AuditEvent.getSourceName方法的具体用法?Java AuditEvent.getSourceName怎么用?Java AuditEvent.getSourceName使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类com.puppycrawl.tools.checkstyle.api.AuditEvent
的用法示例。
在下文中一共展示了AuditEvent.getSourceName方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。
示例1: isSuppressed
import com.puppycrawl.tools.checkstyle.api.AuditEvent; //导入方法依赖的package包/类
/**
* Checks for a suppression of a check with the given source name and
* location in the last file processed.
* @param event audit event.
* @return whether the check with the given name is suppressed at the given
* source location
*/
public static boolean isSuppressed(AuditEvent event) {
final List<Entry> entries = ENTRIES.get();
final String sourceName = event.getSourceName();
final String checkAlias = getAlias(sourceName);
final int line = event.getLine();
final int column = event.getColumn();
boolean suppressed = false;
for (Entry entry : entries) {
final boolean afterStart = isSuppressedAfterEventStart(line, column, entry);
final boolean beforeEnd = isSuppressedBeforeEventEnd(line, column, entry);
final boolean nameMatches =
ALL_WARNING_MATCHING_ID.equals(entry.getCheckName())
|| entry.getCheckName().equalsIgnoreCase(checkAlias);
final boolean idMatches = event.getModuleId() != null
&& event.getModuleId().equals(entry.getCheckName());
if (afterStart && beforeEnd && (nameMatches || idMatches)) {
suppressed = true;
break;
}
}
return suppressed;
}
示例2: getCheckShortName
import com.puppycrawl.tools.checkstyle.api.AuditEvent; //导入方法依赖的package包/类
/**
* Returns check name without 'Check' suffix.
* @param event audit event.
* @return check name without 'Check' suffix.
*/
private static String getCheckShortName(AuditEvent event) {
final String checkFullName = event.getSourceName();
final String checkShortName;
final int lastDotIndex = checkFullName.lastIndexOf('.');
if (lastDotIndex == -1) {
if (checkFullName.endsWith(SUFFIX)) {
checkShortName = checkFullName.substring(0, checkFullName.lastIndexOf(SUFFIX));
}
else {
checkShortName = checkFullName.substring(0, checkFullName.length());
}
}
else {
if (checkFullName.endsWith(SUFFIX)) {
checkShortName = checkFullName.substring(lastDotIndex + 1,
checkFullName.lastIndexOf(SUFFIX));
}
else {
checkShortName = checkFullName.substring(lastDotIndex + 1, checkFullName.length());
}
}
return checkShortName;
}