KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > de > webman > content > db > ContentConstants


1 package de.webman.content.db;
2
3 /**
4  * The Content Constants interface provides the column names of the
5  * <CODE>CONTENT</CODE> table.
6  *
7  * @author <A HREF="mailto:unl@webman.de">Ulrich Nicolas Liss&eacute;</A>,
8  * &copy; 2001 Webman AG.
9  * @version $Revision: 1.2 $
10  */

11 public interface ContentConstants
12 {
13     // $Id: ContentConstants.java,v 1.2 2001/09/28 14:19:41 uli Exp $
14

15     // Constants.
16

17     /**
18      * The <CODE>CONTENT_ID</CODE> column.
19      */

20     String JavaDoc CONTENT_ID = "CONTENT_ID";
21
22     /**
23      * The <CODE>XML_TEXT</CODE> column.
24      */

25     String JavaDoc XML_TEXT = "XML_TEXT";
26
27 }
28
Popular Tags