|
| 1 | +/* |
| 2 | + * Licensed to the Apache Software Foundation (ASF) under one |
| 3 | + * or more contributor license agreements. See the NOTICE file |
| 4 | + * distributed with this work for additional information |
| 5 | + * regarding copyright ownership. The ASF licenses this file |
| 6 | + * to you under the Apache License, Version 2.0 (the "License"); |
| 7 | + * you may not use this file except in compliance with the License. |
| 8 | + * You may obtain a copy of the License at |
| 9 | + * |
| 10 | + * https://www.apache.org/licenses/LICENSE-2.0 |
| 11 | + * |
| 12 | + * Unless required by applicable law or agreed to in writing, software |
| 13 | + * distributed under the License is distributed on an "AS IS" BASIS, |
| 14 | + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 15 | + * See the License for the specific language governing permissions and |
| 16 | + * limitations under the License. |
| 17 | + */ |
| 18 | + |
| 19 | +/** |
| 20 | + * HtmlUnit XPath module. |
| 21 | + * <p> |
| 22 | + * This module provides XPath 1.0 functionality for HtmlUnit. |
| 23 | + * It is based on a fork of Apache Xalan's XPath engine, streamlined to include |
| 24 | + * only the XPath evaluation capabilities needed by HtmlUnit. |
| 25 | + * </p> |
| 26 | + * |
| 27 | + * @author Ronald Brill |
| 28 | + * @since 5.0.0 |
| 29 | + */ |
| 30 | +module org.htmlunit.xpath { |
| 31 | + exports org.htmlunit.xpath; |
| 32 | + exports org.htmlunit.xpath.axes; |
| 33 | + exports org.htmlunit.xpath.compiler; |
| 34 | + exports org.htmlunit.xpath.functions; |
| 35 | + exports org.htmlunit.xpath.objects; |
| 36 | + exports org.htmlunit.xpath.operations; |
| 37 | + exports org.htmlunit.xpath.patterns; |
| 38 | + exports org.htmlunit.xpath.res; |
| 39 | + exports org.htmlunit.xpath.xml.utils; |
| 40 | +} |
0 commit comments