01: /*
02: * This file is part of the WfMOpen project.
03: * Copyright (C) 2001-2003 Danet GmbH (www.danet.de), GS-AN.
04: * All rights reserved.
05: *
06: * This program is free software; you can redistribute it and/or modify
07: * it under the terms of the GNU General Public License as published by
08: * the Free Software Foundation; either version 2 of the License, or
09: * (at your option) any later version.
10: *
11: * This program is distributed in the hope that it will be useful,
12: * but WITHOUT ANY WARRANTY; without even the implied warranty of
13: * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14: * GNU General Public License for more details.
15: *
16: * You should have received a copy of the GNU General Public License
17: * along with this program; if not, write to the Free Software
18: * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
19: *
20: * $Id: SAXEventBufferImpl.java,v 1.2 2006/09/29 12:32:10 drmlipp Exp $
21: *
22: * $Log: SAXEventBufferImpl.java,v $
23: * Revision 1.2 2006/09/29 12:32:10 drmlipp
24: * Consistently using WfMOpen as projct name now.
25: *
26: * Revision 1.1.1.2 2004/08/18 15:17:39 drmlipp
27: * Update to 1.2
28: *
29: * Revision 1.8 2004/04/07 15:46:15 lipp
30: * Added serial version id.
31: *
32: * Revision 1.7 2003/06/27 08:51:44 lipp
33: * Fixed copyright/license information.
34: *
35: * Revision 1.6 2003/04/24 19:47:50 lipp
36: * Removed dependency between general util and workflow api.
37: *
38: * Revision 1.3 2003/04/22 16:37:27 lipp
39: * Made SAXEventBuffer outer class.
40: *
41: * Revision 1.2 2003/04/18 18:40:17 lipp
42: * Better performing implementation of SAXContentBuffer.
43: *
44: * Revision 1.1 2002/12/19 16:23:46 lipp
45: * Resolved illegal dependency between apis and danet.an.util.
46: *
47: */
48: package de.danet.an.workflow.util;
49:
50: import de.danet.an.util.sax.SAXContentBuffer;
51:
52: import de.danet.an.workflow.api.SAXEventBuffer;
53:
54: /**
55: * This class implements the interface <code>SAXEventBuffer</code>
56: * using the <code>SAXContentBuffer</code> as base
57: * class. <code>SAXContentBuffer</code> cannot implement
58: * <code>SAXEventBuffer</code> directly, as
59: * <code>SAXEventBuffer</code> is an interface from the workflow API
60: * and <code>SAXContentBuffer</code> is part of the general purpose
61: * utility library.
62: *
63: * @author <a href="mailto:lipp@danet.de"></a>
64: * @version $Revision: 1.2 $
65: */
66:
67: public class SAXEventBufferImpl extends SAXContentBuffer implements
68: SAXEventBuffer {
69:
70: /** Version id for serialization. */
71: static final long serialVersionUID = 2624991254001096169L;
72:
73: /**
74: * Creates an instance of <code>SAXEventBufferImpl</code>
75: * with all attributes initialized to default values.
76: */
77: public SAXEventBufferImpl() {
78: }
79:
80: }
|