Question

I'm about to write a class called CurrentDate and need a solid package name. The obvious answers are com.destroytoday.date or com.destroytoday.time, but I'm not sure if I'll have more date-related classes in the future to justify an entire package. Are there any names I can use that would allow non-date-related classes in the future?

To be more specific about the class, it consists of static functions like toString() that auto-update a Date instance and return the current info.

Was it helpful?

Solution

easy: destroy.time

OTHER TIPS

The first namespaces I can think of, without to know the purpose of such classes are com.destroytoday.utility, com.dewstroytoday.utilities, com.destroytoday.support, com.destroytoday.helpers.

What about com.destroytoday.generic?

Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top