Interface OutputInterface

  • All Known Implementing Classes:
    Output

    public interface OutputInterface
    Output contains all of the functionality to format and print to the console the complete output of the program. This includes the list of files, their metadata, the list of suggested refactorings, and their metadata.
    • Method Detail

      • getRefactoringsToPrint

        int getRefactoringsToPrint()
      • setRefactoringsToPrint

        void setRefactoringsToPrint​(int refactoringsToPrint)
      • getFiles

        java.util.List<java.io.File> getFiles()
      • setFiles

        void setFiles​(java.util.List<java.io.File> files)
      • setRefactorings

        void setRefactorings​(java.util.List<? extends RefactoringInterface> refactorings)
      • getSectionOne

        java.lang.String getSectionOne()
      • getSectionTwo

        java.lang.String getSectionTwo()
      • getCompleteOutput

        java.lang.String getCompleteOutput()