Uses of Class
com.puppycrawl.tools.checkstyle.api.FileContents

Packages that use FileContents
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 Contains the 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
 

Methods in com.puppycrawl.tools.checkstyle with parameters of type FileContents
static DetailAST TreeWalker.parse(FileContents aContents)
          Static helper method to parses a Java source file.
 

Uses of FileContents in com.puppycrawl.tools.checkstyle.api
 

Methods in com.puppycrawl.tools.checkstyle.api that return FileContents
 FileContents Check.getFileContents()
          Returns the file contents associated with the tree.
 

Methods in com.puppycrawl.tools.checkstyle.api with parameters of type FileContents
 void Check.setFileContents(FileContents aContents)
          Set the file contents associated with the tree.
 

Uses of FileContents in com.puppycrawl.tools.checkstyle.checks
 

Methods in com.puppycrawl.tools.checkstyle.checks that return FileContents
static FileContents FileContentsHolder.getContents()
           
 

Uses of FileContents in com.puppycrawl.tools.checkstyle.filters
 

Methods in com.puppycrawl.tools.checkstyle.filters that return FileContents
 FileContents SuppressionCommentFilter.getFileContents()
           
 

Methods in com.puppycrawl.tools.checkstyle.filters with parameters of type FileContents
 void SuppressionCommentFilter.setFileContents(FileContents aFileContents)
          Set the FileContents for this filter.
 


Back to the Checkstyle Home Page