views:

78

answers:

3

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.

A: 

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.

kiamlaluno
A: 

easy: destroy.time

gowen
This does make the most sense. The more I think of it, the more ideas I come up with for date/time-related classes :)
destroytoday
A: 

What about com.destroytoday.generic?

Rui Silva