KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > com > inversoft > util > StringConstants


1 /*
2  * Copyright (c) 2003, 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;
8
9
10 /**
11  * This interface holds values used in common string operations
12  *
13  * @author Brian Pontarelli
14  * @since 1.0
15  * @version 2.0
16  */

17 public interface StringConstants {
18
19     /** The string constant for true */
20     String JavaDoc TRUE_STRING = "true";
21
22     /** The string constant for false */
23     String JavaDoc FALSE_STRING = "false";
24 }
25
Popular Tags