01: /*
02: * Created on 10/01/2004
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: import java.awt.Dimension;
29: import java.util.Date;
30:
31: /**
32: * Interface básica para uma classe executar a função de Calendario
33: *
34: * @author Igor Regis da Silva Simões
35: * @created 20/01/2004
36: */
37: public interface ICalendar {
38: /**
39: * Configura a janela passando a data que será exibida por padrão e o ICalendarTextField que
40: * receberá a data selecionada pelo usuário.
41: * @param text O componente que receberá a data selecionada no calendário
42: */
43: public void setTextComponent(ICalendarField text);
44:
45: /**
46: * Determina da data atual do calendario
47: * @param data Date com a data a ser representada pelo calendário
48: */
49: public void setDate(Date data);
50:
51: /**
52: * Indica que o calendário pode ser exibido
53: * @param enabled boolean indicando se o calendário está ou não abilitado
54: */
55: public void setAbilitado(boolean enabled);
56:
57: /**
58: * Indica se um componente está ou não habilitado para exibição
59: * @return booleano
60: */
61: public boolean isAbilitado();
62:
63: /**
64: * Determina se um componente está visível ou não
65: * @param flag
66: */
67: public void setVisible(boolean flag);
68:
69: /**
70: * Determina a posição do calendario na tela
71: * @param x cordenada X
72: * @param y cordenada Y
73: */
74: public void setLocation(int x, int y);
75:
76: /**
77: * Retorna o tamanho do calendário
78: * @return Dimension com o tamanho do calendário
79: */
80: public Dimension getSize();
81:
82: }
|