https://github.com/centerdevice/classcleaner
An eclipse plugin to split up classes and reorganize class methods
https://github.com/centerdevice/classcleaner
Last synced: 10 months ago
JSON representation
An eclipse plugin to split up classes and reorganize class methods
- Host: GitHub
- URL: https://github.com/centerdevice/classcleaner
- Owner: CenterDevice
- License: other
- Created: 2016-08-12T12:40:36.000Z (almost 10 years ago)
- Default Branch: master
- Last Pushed: 2016-09-09T14:52:21.000Z (almost 10 years ago)
- Last Synced: 2025-07-20T12:24:47.901Z (11 months ago)
- Language: Java
- Size: 80.1 KB
- Stars: 2
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE.txt
Awesome Lists containing this project
README
# ClassCleaner
ClassCleaner is an eclipse plugin to help you split up classes and to reorganize class methods. Therefore, ClassCleaner analyzes references of methods in your class, to identify groups of methods that do not refer to each other. If such methods are detected, ClassCleaner suggests to extract these methods into a separate class in order to keep your classes small.
## Building
Checkout the project and run
mvn eclipse:eclipse
To run the project, select
Run As -> Eclipse Application
To enable ClassCleaner for your project, right-click your project in the package explorer and select
Configure -> Enable ClassCleaner