01: /*
02: * Created on 27/12/2004
03: *
04: * To change the template for this generated file go to
05: * Window - Preferences - Java - Code Generation - Code and Comments
06: */
07: package br.com.gfp.internationalization;
08:
09: import br.com.gfpshare.localization.Messages;
10:
11: /**
12: * @author f4353008
13: * @since 27/12/2004 11:59:04
14: *
15: * To change the template for this generated type comment go to
16: * Window - Preferences - Java - Code Generation - Code and Comments
17: */
18: public class TelaEntidadeMessages extends Messages {
19: private static final String BUNDLE_NAME = "internationalization.TelaEntidade";//$NON-NLS-1$
20:
21: private static final TelaEntidadeMessages instance = new TelaEntidadeMessages();
22:
23: /**
24: *
25: */
26: private TelaEntidadeMessages() {
27: //Construtor privado pra impedir que esta classe seja instanciada
28: }
29:
30: public static TelaEntidadeMessages getMessages() {
31: return instance;
32: }
33:
34: /**
35: *
36: * @see br.com.gfpshare.localization.Messages#getBundleName()
37: */
38: @Override
39: protected String getBundleName() {
40: return BUNDLE_NAME;
41: }
42: }
|