├── .gitignore ├── README.md ├── lib ├── CopyLibs │ └── org-netbeans-modules-java-j2seproject-copylibstask.jar ├── junit_4 │ ├── junit-4.13.2-javadoc.jar │ ├── junit-4.13.2-sources.jar │ └── junit-4.13.2.jar └── nblibraries.properties ├── manifest.mf ├── nbproject ├── build-impl.xml ├── configs │ ├── Run_as_WebStart.properties │ └── Run_in_Browser.properties ├── genfiles.properties ├── jfx-impl.xml ├── project.properties └── project.xml ├── readme ├── app.gif └── useless_lock.png └── src └── officerbreaker ├── Controller.java ├── FileManipulator.java ├── OfficerBreaker.java ├── View.fxml ├── XMLParser.java └── img ├── excel.png ├── powerpoint.png ├── prog-bar-complete.png ├── prog-bar-ongoing.gif ├── title.png └── word.png /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nedlir/OfficerBreaker/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nedlir/OfficerBreaker/HEAD/README.md -------------------------------------------------------------------------------- /lib/CopyLibs/org-netbeans-modules-java-j2seproject-copylibstask.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nedlir/OfficerBreaker/HEAD/lib/CopyLibs/org-netbeans-modules-java-j2seproject-copylibstask.jar -------------------------------------------------------------------------------- /lib/junit_4/junit-4.13.2-javadoc.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nedlir/OfficerBreaker/HEAD/lib/junit_4/junit-4.13.2-javadoc.jar -------------------------------------------------------------------------------- /lib/junit_4/junit-4.13.2-sources.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nedlir/OfficerBreaker/HEAD/lib/junit_4/junit-4.13.2-sources.jar -------------------------------------------------------------------------------- /lib/junit_4/junit-4.13.2.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nedlir/OfficerBreaker/HEAD/lib/junit_4/junit-4.13.2.jar -------------------------------------------------------------------------------- /lib/nblibraries.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nedlir/OfficerBreaker/HEAD/lib/nblibraries.properties -------------------------------------------------------------------------------- /manifest.mf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nedlir/OfficerBreaker/HEAD/manifest.mf -------------------------------------------------------------------------------- /nbproject/build-impl.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nedlir/OfficerBreaker/HEAD/nbproject/build-impl.xml -------------------------------------------------------------------------------- /nbproject/configs/Run_as_WebStart.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nedlir/OfficerBreaker/HEAD/nbproject/configs/Run_as_WebStart.properties -------------------------------------------------------------------------------- /nbproject/configs/Run_in_Browser.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nedlir/OfficerBreaker/HEAD/nbproject/configs/Run_in_Browser.properties -------------------------------------------------------------------------------- /nbproject/genfiles.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nedlir/OfficerBreaker/HEAD/nbproject/genfiles.properties -------------------------------------------------------------------------------- /nbproject/jfx-impl.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nedlir/OfficerBreaker/HEAD/nbproject/jfx-impl.xml -------------------------------------------------------------------------------- /nbproject/project.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nedlir/OfficerBreaker/HEAD/nbproject/project.properties -------------------------------------------------------------------------------- /nbproject/project.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nedlir/OfficerBreaker/HEAD/nbproject/project.xml -------------------------------------------------------------------------------- /readme/app.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nedlir/OfficerBreaker/HEAD/readme/app.gif -------------------------------------------------------------------------------- /readme/useless_lock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nedlir/OfficerBreaker/HEAD/readme/useless_lock.png -------------------------------------------------------------------------------- /src/officerbreaker/Controller.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nedlir/OfficerBreaker/HEAD/src/officerbreaker/Controller.java -------------------------------------------------------------------------------- /src/officerbreaker/FileManipulator.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nedlir/OfficerBreaker/HEAD/src/officerbreaker/FileManipulator.java -------------------------------------------------------------------------------- /src/officerbreaker/OfficerBreaker.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nedlir/OfficerBreaker/HEAD/src/officerbreaker/OfficerBreaker.java -------------------------------------------------------------------------------- /src/officerbreaker/View.fxml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nedlir/OfficerBreaker/HEAD/src/officerbreaker/View.fxml -------------------------------------------------------------------------------- /src/officerbreaker/XMLParser.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nedlir/OfficerBreaker/HEAD/src/officerbreaker/XMLParser.java -------------------------------------------------------------------------------- /src/officerbreaker/img/excel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nedlir/OfficerBreaker/HEAD/src/officerbreaker/img/excel.png -------------------------------------------------------------------------------- /src/officerbreaker/img/powerpoint.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nedlir/OfficerBreaker/HEAD/src/officerbreaker/img/powerpoint.png -------------------------------------------------------------------------------- /src/officerbreaker/img/prog-bar-complete.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nedlir/OfficerBreaker/HEAD/src/officerbreaker/img/prog-bar-complete.png -------------------------------------------------------------------------------- /src/officerbreaker/img/prog-bar-ongoing.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nedlir/OfficerBreaker/HEAD/src/officerbreaker/img/prog-bar-ongoing.gif -------------------------------------------------------------------------------- /src/officerbreaker/img/title.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nedlir/OfficerBreaker/HEAD/src/officerbreaker/img/title.png -------------------------------------------------------------------------------- /src/officerbreaker/img/word.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nedlir/OfficerBreaker/HEAD/src/officerbreaker/img/word.png --------------------------------------------------------------------------------