KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > com > inversoft > util > typevalidator > test > Bean


1 /*
2  * Copyright (c) 2003-2004, Inversoft
3  *
4  * This software is distribuable under the GNU Lesser General Public License.
5  * For more information visit gnu.org.
6  */

7 package com.inversoft.util.typevalidator.test;
8
9
10 /**
11  * <p>
12  * This class is a JavaBean for testing.
13  * </p>
14  *
15  * @author Brian Pontarelli
16  */

17 public class Bean {
18
19     public String JavaDoc getBadEmail() {
20         return "bad email.address.com";
21     }
22
23     public String JavaDoc getGoodEmail() {
24         return "good@email.address.com";
25     }
26 }
Popular Tags