01: /*
02: * Copyright 2002 (C) TJDO.
03: * All rights reserved.
04: *
05: * This software is distributed under the terms of the TJDO License version 1.0.
06: * See the terms of the TJDO License in the documentation provided with this software.
07: *
08: * $Id: TableMetadata.java,v 1.2 2002/10/17 21:00:58 pierreg0 Exp $
09: */
10:
11: package com.triactive.jdo.store;
12:
13: class TableMetadata {
14: public final int tableID;
15: public final String javaName;
16: public final SQLIdentifier tableName;
17:
18: public TableMetadata(int tableID, String javaName,
19: SQLIdentifier tableName) {
20: this.tableID = tableID;
21: this.javaName = javaName;
22: this.tableName = tableName;
23: }
24: }
|