01: /*
02: * Created on 04/12/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.gfpshare.beans;
27:
28: import java.awt.Color;
29: import java.awt.event.FocusListener;
30:
31: /**
32: * Esta interface é a de um label de um campo que pode ser setado como de preenchimento
33: * obrigatório. Para campo entende-se JTextField e assemelhados, JComboBox, etc.
34: * @author Igor Regis da Silva Simoes
35: */
36: public interface RequiredFieldLabel extends FocusListener {
37: /**
38: * Indica se o campo é obrigatório
39: * @return boolean
40: */
41: public boolean isRequired();
42:
43: /**
44: * Indica a cor com a qual o campo piscará para indicar que seu preenchimento é obrigatório
45: * @param cor
46: */
47: public void setRequiredColor(Color cor);
48:
49: /**
50: * Indica a cor com a qual o campo piscará para indicar que seu preenchimento é obrigatório
51: * @return Color
52: */
53: public Color getRequiredColor();
54:
55: /**
56: * Campo de preenchimento obrigatório ao qual este RequiredFieldLabel se refere
57: * @param requiredField
58: */
59: public void setRequiredField(RequiredField requiredField);
60:
61: /**
62: * Seta o método a ser chamado para validar este campo durante o preenchimento do mesmo
63: * @param object O objeto capaz de realizar a validação
64: * @param method O método a ser chamado para realizar a validação
65: */
66: public void setValidationAction(Object object, String method);
67:
68: /**
69: * Indica que a unica validação a ser tomada é verificar se o campo
70: * está preenchido, não importando o seu conteúdo
71: * @param notNull true caso seja necessário fazer apenas este tipo de validação
72: */
73: public void setValidationNotNull(boolean notNull);
74:
75: /**
76: * Idica que caso este label seja de um campo requerido sua cor deve ser
77: * destacada dentre os demais labels
78: * @param highlight Eh para destacar?
79: */
80: public void highlight(boolean highlight);
81: }
|