I'm trying my best to write good readable, code, but often have doubts in my work!
I'm creating some code to check the status of some protected software, and have created a class which has methods to check whether the software in use is licensed (there is a separate Licensing class).
I've named the class 'Protection', which is currently accessed, via the creation of an appProtect object. The methods in the class allow to check a number of things about the application, in order to confirm that it is in fact licensed for use.
Is 'Protection' an acceptable name for such a class?
I read somewhere that if you have to think to long in names of methods, classes, objects etc, then perhaps you may not be coding in an Object Oriented way. I've spent a lot of time thinking about this before making this post, which has lead me to doubt the suitability of the name!
In creating (and proof reading) this post, I'm starting to seriously doubt my work so far. I'm also thinking I should probably rename the object to applicationProtection rather than appProtect (though am open to any comments on this too?). I'm posting non the less, in the hope that I'll learn something from others views/opinions, even if they're simply confirming I've "done it wrong"!
EDIT: Thanks for the responses, and apologies if it wasn't a 'valid' question. I was going to go for licenseChecker (thanks @millimoose) though another thread suggested 'Protector' which seems more fitting, as the class acts depending on whether there is a valid license.
LicenceChecker. A class name should be a noun describing what it represents, or what it does. (Class names that are nounified verbs seem odd, but seeing as most design patterns have classes encapsulating processes or actions it can't be that bad a code smell.) – millimoose Jul 9 '12 at 14:52Protectiondoesn't say what the class does and could mean a lot of things.CopyProtectionorCopyProtectionCheckwould also be an improvement though. – millimoose Jul 9 '12 at 14:55