01: // You can redistribute this software and/or modify it under the terms of
02: // the Infozone Software License version 2 published by the Infozone Group
03: // (http://www.infozone-group.org).
04: //
05: // Copyright (C) @year@ by The Infozone Group. All rights reserved.
06: //
07: // $Id: XPathQueryFactoryImpl.java,v 1.1 2002/05/10 08:59:12 per_nyfelt Exp $
08:
09: package org.infozone.tools.xml.queries.xalan;
10:
11: import org.infozone.tools.xml.queries.XPathQuery;
12: import org.infozone.tools.xml.queries.XPathQueryFactory;
13: import org.infozone.tools.xml.queries.XPathQueryConfigurationException;
14:
15: import javax.xml.parsers.FactoryConfigurationError;
16:
17: /**
18: * @version $Revision: 1.1 $ $Date: 2002/05/10 08:59:12 $
19: * @author <a href="http://www.softwarebuero.de">SMB</a>
20: * @see XPathQuery
21: */
22: public final class XPathQueryFactoryImpl extends XPathQueryFactory {
23:
24: public XPathQueryFactoryImpl() {
25: }
26:
27: public XPathQuery newXPathQuery()
28: throws XPathQueryConfigurationException {
29: return new XPathQueryImpl();
30: }
31:
32: }
|