1

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.

Amarghosh
  • 58,710
  • 11
  • 92
  • 121
destroytoday
  • 227
  • 2
  • 12

3 Answers3

1

easy: destroy.time

gowen
  • 26
  • 3
  • 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 Dec 15 '09 at 14:30
0

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.

apaderno
  • 28,547
  • 16
  • 75
  • 90
0

What about com.destroytoday.generic?