01: // You can redistribute this software and/or modify it under the terms of
02: // the Ozone Library License version 1 published by ozone-db.org.
03: //
04: // The original code and portions created by SMB are
05: // Copyright (C) 1997-@year@ by SMB GmbH. All rights reserved.
06: //
07: // $Id: IDTableNodeBranch.java,v 1.2 2002/04/10 06:56:31 per_nyfelt Exp $
08:
09: package org.ozoneDB.core.wizardStore;
10:
11: import java.io.*;
12: import org.ozoneDB.DxLib.*;
13:
14: /**
15: * Knoten mit referenz auf eine subTable ohne eigenen schluessel und
16: * ohne eigene daten
17: */
18: final class IDTableNodeBranch extends DxDiskHashNodeBranch {
19:
20: public IDTableNodeBranch(IDTable grandParent) {
21: super(grandParent);
22: }
23: }
|