01: /*
02: * Created on 04/01/2005
03: *
04: * ============================================================================
05: * GNU Lesser General Public License
06: * ============================================================================
07: *
08: * Swing Components - visit http://sf.net/projects/gfd
09: *
10: * Copyright (C) 2004 Igor Regis da Silva Simões
11: *
12: * This library is free software; you can redistribute it and/or
13: * modify it under the terms of the GNU Lesser General Public
14: * License as published by the Free Software Foundation; either
15: * version 2.1 of the License, or (at your option) any later version.
16: *
17: * This library is distributed in the hope that it will be useful,
18: * but WITHOUT ANY WARRANTY; without even the implied warranty of
19: * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
20: * Lesser General Public License for more details.
21: *
22: * You should have received a copy of the GNU Lesser General Public
23: * License along with this library; if not, write to the Free Software
24: * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307, USA.
25: */
26: package br.com.igor.beans;
27:
28: import br.com.igor.localization.Messages;
29:
30: /**
31: * @author f4353008
32: * @since 04/01/2005 17:58:36
33: *
34: * To change the template for this generated type comment go to
35: * Window - Preferences - Java - Code Generation - Code and Comments
36: */
37: public class PaginadorDeTabelaMessages extends Messages {
38: private static final String BUNDLE_NAME = "internationalization.Paginador";//$NON-NLS-1$
39:
40: private static final PaginadorDeTabelaMessages instance = new PaginadorDeTabelaMessages();
41:
42: /**
43: *
44: */
45: private PaginadorDeTabelaMessages() {
46: //Construtor privado pra impedir que esta classe seja instanciada
47: }
48:
49: public static PaginadorDeTabelaMessages getMessages() {
50: return instance;
51: }
52:
53: /**
54: *
55: * @see br.com.igor.localization.Messages#getBundleName()
56: */
57: @Override
58: protected String getBundleName() {
59: return BUNDLE_NAME;
60: }
61: }
|