Downloads: 1372
Rating:
Participated in rating: 1
General usage instructions:
Just write getInstance() method, and this inspection will check this class like a Singleton.
Singleton class should be checked for next errors:
* Class should be final.
* Class should have private constructor.
* getInstance() method must be public and static and return instance of its class.
Comments: