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: NamespaceSupport.java,v 1.1 2001/12/18 11:03:24 per_nyfelt Exp $
08:
09: package org.ozoneDB.xml.util;
10:
11: /**
12: * This implementation does nothing than making org.xml.sax.helpers.NamespaceSupport
13: * serializable.
14: */
15: class NamespaceSupport extends org.xml.sax.helpers.NamespaceSupport
16: implements java.io.Serializable {
17: }
|