| Author |
and what do you think about Constants class?
|
Pavlo Rybakov
Greenhorn
Joined: May 31, 2010
Posts: 24
|
|
Hi all,
What do you think about Constants class which contains all possible constants?
Why it can be a wrong way?
Thanks,
Pavlo.
|
 |
Bear Bibeault
Author and ninkuma
Marshal
Joined: Jan 10, 2002
Posts: 56221
|
|
|
I creates a centralized and global repository. Yuk! Constants, as with any other elements, should be declared close to, and at the lowest, scope where they make sense.
|
[Smart Questions] [JSP FAQ] [Books by Bear] [Bear's FrontMan] [About Bear]
|
 |
Roel De Nijs
Bartender
Joined: Jul 19, 2004
Posts: 4355
|
|
|
I created a Constants class in my gui package and also a Messages class. The first one contains a bit of useful constants, the other one contains hard-coded captions, titles, error messages,... so it will be quiet easy to adapt i18n to the application (if necessary in a future release)
|
SCJA, SCJP (1.4 | 5.0 | 6.0), SCJD
http://www.javaroe.be/
|
 |
 |
|
|
subject: and what do you think about Constants class?
|
|
|