KickJava   Java API By Example, From Geeks To Geeks.

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


1 package de.webman.content.db;
2
3 /**
4  * The Content Instance Constants interface provides the column names of the
5  * <CODE>CONTENT_INSTANCE</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 ContentInstanceConstants
12 {
13     // $Id: ContentInstanceConstants.java,v 1.2 2001/09/28 14:19:41 uli Exp $
14

15     // Constants.
16

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

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

25     String JavaDoc CONTENT_NODE_ID = "CONTENT_NODE_ID";
26
27     /**
28      * The <CODE>NAME</CODE> column.
29      */

30     String JavaDoc NAME = "NAME";
31
32 }
33
Popular Tags