Uses of Class
com.puppycrawl.tools.checkstyle.api.FileContents
-
Packages that use FileContents Package Description com.puppycrawl.tools.checkstyle Contains the implementation of the Checkstyle framework.com.puppycrawl.tools.checkstyle.api Contains the core API to be used to implement checks.com.puppycrawl.tools.checkstyle.checks.regexp Contains the regular expression checks that are bundled with the main distribution.com.puppycrawl.tools.checkstyle.filters Contains the filters that are bundled with the main distribution. -
-
Uses of FileContents in com.puppycrawl.tools.checkstyle
Fields in com.puppycrawl.tools.checkstyle declared as FileContents Modifier and Type Field Description private FileContentsTreeWalkerAuditEvent. fileContentsThe file contents.Methods in com.puppycrawl.tools.checkstyle that return FileContents Modifier and Type Method Description FileContentsTreeWalkerAuditEvent. getFileContents()Returns contents of the file.Methods in com.puppycrawl.tools.checkstyle with parameters of type FileContents Modifier and Type Method Description private java.util.SortedSet<Violation>TreeWalker. getFilteredViolations(java.lang.String fileName, FileContents fileContents, DetailAST rootAST)Returns filtered set ofViolation.private voidTreeWalker. notifyBegin(DetailAST rootAST, FileContents contents, TreeWalker.AstState astState)Notify checks that we are about to begin walking a tree.static DetailASTJavaParser. parse(FileContents contents)Static helper method to parses a Java source file.private voidTreeWalker. walk(DetailAST ast, FileContents contents, TreeWalker.AstState astState)Initiates the walk of an AST.Constructors in com.puppycrawl.tools.checkstyle with parameters of type FileContents Constructor Description TreeWalkerAuditEvent(FileContents fileContents, java.lang.String fileName, Violation violation, DetailAST rootAst)Creates a newTreeWalkerAuditEventinstance. -
Uses of FileContents in com.puppycrawl.tools.checkstyle.api
Fields in com.puppycrawl.tools.checkstyle.api declared as FileContents Modifier and Type Field Description private FileContentsAbstractCheck.FileContext. fileContentsThe current file contents.private FileContentsAbstractFileSetCheck.FileContext. fileContentsThe current file contents.Methods in com.puppycrawl.tools.checkstyle.api that return FileContents Modifier and Type Method Description FileContentsAbstractCheck. getFileContents()Deprecated.Usage of this method is no longer accepted.protected FileContentsAbstractFileSetCheck. getFileContents()Returns the file contents associated with the file.Methods in com.puppycrawl.tools.checkstyle.api with parameters of type FileContents Modifier and Type Method Description voidAbstractCheck. setFileContents(FileContents contents)Set the file contents associated with the tree.voidAbstractFileSetCheck. setFileContents(FileContents contents)Set the file contents associated with the tree. -
Uses of FileContents in com.puppycrawl.tools.checkstyle.checks.regexp
Fields in com.puppycrawl.tools.checkstyle.checks.regexp declared as FileContents Modifier and Type Field Description private FileContentsCommentSuppressor. currentContentsFile contents to check for comments.Constructors in com.puppycrawl.tools.checkstyle.checks.regexp with parameters of type FileContents Constructor Description CommentSuppressor(FileContents currentContents)Constructor for this suppressor. -
Uses of FileContents in com.puppycrawl.tools.checkstyle.filters
Fields in com.puppycrawl.tools.checkstyle.filters with type parameters of type FileContents Modifier and Type Field Description private java.lang.ref.WeakReference<FileContents>SuppressionCommentFilter. fileContentsReferenceReferences the current FileContents for this filter.private java.lang.ref.WeakReference<FileContents>SuppressWithNearbyCommentFilter. fileContentsReferenceReferences the current FileContents for this filter.Methods in com.puppycrawl.tools.checkstyle.filters that return FileContents Modifier and Type Method Description private FileContentsSuppressionCommentFilter. getFileContents()Returns FileContents for this filter.private FileContentsSuppressWithNearbyCommentFilter. getFileContents()Returns FileContents for this filter.Methods in com.puppycrawl.tools.checkstyle.filters with parameters of type FileContents Modifier and Type Method Description voidSuppressionCommentFilter. setFileContents(FileContents fileContents)Set the FileContents for this filter.voidSuppressWithNearbyCommentFilter. setFileContents(FileContents fileContents)Set the FileContents for this filter.
-