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. 
 

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.
 


Back to the Checkstyle Home Page