Source code: javatools/util/Validator.java
1 /*
2 * Validator.java
3 *
4 * Created on 22 giugno 2002, 19.06
5 Javatools (modified version) - Some useful general classes.
6 Copyright (C) 2002-2003 Chris Bitmead (original) Antonio Petrelli (modified)
7
8 This program is free software; you can redistribute it and/or modify
9 it under the terms of the GNU General Public License as published by
10 the Free Software Foundation; either version 2 of the License, or
11 (at your option) any later version.
12
13 This program is distributed in the hope that it will be useful,
14 but WITHOUT ANY WARRANTY; without even the implied warranty of
15 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 GNU General Public License for more details.
17
18 You should have received a copy of the GNU General Public License
19 along with this program; if not, write to the Free Software
20 Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
21
22 Contact me at: brenmcguire@users.sourceforge.net
23 */
24
25 package javatools.util;
26
27 /**
28 * It's like an "interface" between a centralized data manager and different
29 * "clients". It should be used to check whether data is changed.
30 * @author Antonio Petrelli
31 * @version 0.0.1
32 */
33 public class Validator {
34
35 /** Creates new Validator */
36 public Validator() {
37 valid = false;
38 }
39
40 /** Sets the valid flag.
41 * @param pValid The valid flag.
42 */
43 public void setValid(boolean pValid) {
44 valid = pValid;
45 }
46
47 /** Gets the valid flag.
48 * @return The valid flag.
49 */
50 public boolean getValid() {
51 return valid;
52 }
53
54 private boolean valid;
55 }