01: /*
02: * Created on 16/01/2006
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.gfpshare.beans;
27:
28: /**
29: *
30: * @author Igor Regis da Silva Simoes
31: * @since 16/01/2006
32: */
33: public interface MessageView {
34: /**
35: * Cria uma nova janela para exibir mensagens ao usuário, retornando ao chamador
36: * uma referencia para esta janela de forma que se possa exibir as mensagens conforme
37: * necessário e até mesmo fechar a janela de mensagens por meio de chamada de método.
38: * @param title Titulo da janela criada
39: * @param message Mensagem inicialmente exibida pela janela
40: * @param showProgress Indica se é ou não para exibir progress bar
41: * @return SecondaryMessageView
42: */
43: public abstract MessageView showMessage(String title,
44: String message, boolean showProgress);
45:
46: /**
47: * @return Returns the messagePanel.
48: */
49: public abstract MessagePanel getMessagePanel();
50:
51: /**
52: * Marca este messageView para ser fechado automaticamente
53: * caso o usuário não o faça primeiro.
54: */
55: public abstract void finishUse();
56:
57: /**
58: * Marca este messageView para ser fechado automaticamente
59: * caso o usuário não o faça primeiro.
60: * @param segundos Quantos segundos aguardar antes de fechar este MessageView
61: */
62: public abstract void finishUse(final long segundos);
63: }
|