KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > com > triactive > jdo > store > TableMetadata


1 /*
2  * Copyright 2002 (C) TJDO.
3  * All rights reserved.
4  *
5  * This software is distributed under the terms of the TJDO License version 1.0.
6  * See the terms of the TJDO License in the documentation provided with this software.
7  *
8  * $Id: TableMetadata.java,v 1.2 2002/10/17 21:00:58 pierreg0 Exp $
9  */

10
11 package com.triactive.jdo.store;
12
13
14 class TableMetadata
15 {
16     public final int tableID;
17     public final String JavaDoc javaName;
18     public final SQLIdentifier tableName;
19
20     public TableMetadata(int tableID, String JavaDoc javaName, SQLIdentifier tableName)
21     {
22         this.tableID = tableID;
23         this.javaName = javaName;
24         this.tableName = tableName;
25     }
26 }
27
Popular Tags