Uses of Class
com.puppycrawl.tools.checkstyle.checks.javadoc.JavadocMethodCheck.ExceptionInfo
-
Packages that use JavadocMethodCheck.ExceptionInfo Package Description com.puppycrawl.tools.checkstyle.checks.javadoc Contains the Javadoc checks that are bundled with the main distribution. -
-
Uses of JavadocMethodCheck.ExceptionInfo in com.puppycrawl.tools.checkstyle.checks.javadoc
Methods in com.puppycrawl.tools.checkstyle.checks.javadoc that return JavadocMethodCheck.ExceptionInfo Modifier and Type Method Description private static JavadocMethodCheck.ExceptionInfo
JavadocMethodCheck. getExceptionInfo(DetailAST ast)
Get ExceptionInfo instance.Methods in com.puppycrawl.tools.checkstyle.checks.javadoc that return types with arguments of type JavadocMethodCheck.ExceptionInfo Modifier and Type Method Description private static List<JavadocMethodCheck.ExceptionInfo>
JavadocMethodCheck. combineExceptionInfo(Collection<JavadocMethodCheck.ExceptionInfo> first, Iterable<JavadocMethodCheck.ExceptionInfo> second)
Combine ExceptionInfo collections together by matching names.private static List<JavadocMethodCheck.ExceptionInfo>
JavadocMethodCheck. getThrowed(DetailAST methodAst)
Get ExceptionInfo for all exceptions that throws in method code by 'throw new'.private static List<JavadocMethodCheck.ExceptionInfo>
JavadocMethodCheck. getThrows(DetailAST ast)
Computes the exception nodes for a method.Methods in com.puppycrawl.tools.checkstyle.checks.javadoc with parameters of type JavadocMethodCheck.ExceptionInfo Modifier and Type Method Description private static boolean
JavadocMethodCheck. isExceptionInfoSame(JavadocMethodCheck.ExceptionInfo info1, JavadocMethodCheck.ExceptionInfo info2)
Check that ExceptionInfo objects are same by name.Method parameters in com.puppycrawl.tools.checkstyle.checks.javadoc with type arguments of type JavadocMethodCheck.ExceptionInfo Modifier and Type Method Description private static List<JavadocMethodCheck.ExceptionInfo>
JavadocMethodCheck. combineExceptionInfo(Collection<JavadocMethodCheck.ExceptionInfo> first, Iterable<JavadocMethodCheck.ExceptionInfo> second)
Combine ExceptionInfo collections together by matching names.private static List<JavadocMethodCheck.ExceptionInfo>
JavadocMethodCheck. combineExceptionInfo(Collection<JavadocMethodCheck.ExceptionInfo> first, Iterable<JavadocMethodCheck.ExceptionInfo> second)
Combine ExceptionInfo collections together by matching names.private static void
JavadocMethodCheck. processThrows(Iterable<JavadocMethodCheck.ExceptionInfo> throwsIterable, String documentedClassName)
Verifies that documented exception is in throws.
-