This is an old Eclipse Java project that was configured for Java SE 1.7. The project needed to be compiled before it could run.
The project now compiles and runs successfully! Use one of these methods:
./run.sh# Compile the project
javac -d bin -sourcepath src src/main/EditText.java
# Run the application
java -cp bin main.EditText- Main Class:
main.EditText - Original Java Version: Java SE 1.7
- Current Java Version: Java 26.0.1 (compatible)
- Build Output:
bin/directory - Source Code:
src/directory
- The project compiles with some deprecation warnings (expected for old code)
- This is a GUI application (Swing-based text editor)
- According to README.txt, Undo/Redo and saving text attributes are not yet implemented
- The project needed to be compiled first - the
bin/directory was empty - Created a convenient
run.shscript for easy compilation and execution - Verified the project works with modern Java (Java 26)
- Text editing with multiple pages
- Bold, Italic, Underline formatting
- Font selection and sizing
- Text color
- Spell checking
- Word count
- Save/Open functionality (saves as .txt without formatting)