⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 htmlsegment.java

📁 这是远程web服务调用的一个包,可以将JSP直接作为服务
💻 JAVA
字号:
package com.meterware.httpunit;/********************************************************************************************************************* $Id: HTMLSegment.java,v 1.15 2004/09/29 17:15:24 russgold Exp $** Copyright (c) 2000-2004, Russell Gold** Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated * documentation files (the "Software"), to deal in the Software without restriction, including without limitation * the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and* to permit persons to whom the Software is furnished to do so, subject to the following conditions:** The above copyright notice and this permission notice shall be included in all copies or substantial portions * of the Software.** THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO* THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF* CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER* DEALINGS IN THE SOFTWARE.********************************************************************************************************************/import org.xml.sax.SAXException;/** * Represents the parse tree for a segment of HTML. * * @author <a href="mailto:russgold@httpunit.org">Russell Gold</a> **/public interface HTMLSegment {    /**     * Returns the HTMLElement found in this segment with the specified ID.     * @exception SAXException thrown if there is an error parsing the segment.     */    public HTMLElement getElementWithID( String id ) throws SAXException;    /**     * Returns the HTMLElements found in this segment with the specified name.     */    public HTMLElement[] getElementsWithName( String name ) throws SAXException;    /**     * Returns the HTMLElements found with the specified attribute value.     *     * @since 1.6     */    public HTMLElement[] getElementsWithAttribute( String name, String value ) throws SAXException;    /**     * Returns a list of HTML element names contained in this HTML section.     */    public String[] getElementNames() throws SAXException;    /**     * Returns the forms found in this HTML segment in the order in which they appear.     * @exception SAXException thrown if there is an error parsing the segment.     **/    public WebForm[] getForms() throws SAXException;    /**     * Returns the form found in this HTML segment with the specified ID.     * @exception SAXException thrown if there is an error parsing the segment.     **/    public WebForm getFormWithID( String ID ) throws SAXException;    /**     * Returns the form found in this HTML segment with the specified name.     * @exception SAXException thrown if there is an error parsing the segment.     **/    public WebForm getFormWithName( String name ) throws SAXException;    /**     * Returns the first form found in the page matching the specified criteria.     * @exception SAXException thrown if there is an error parsing the response.     **/    public WebForm getFirstMatchingForm( HTMLElementPredicate predicate, Object value ) throws SAXException;    /**     * Returns all forms found in the page matching the specified criteria.     * @exception SAXException thrown if there is an error parsing the response.     **/    public WebForm[] getMatchingForms( HTMLElementPredicate predicate, Object criteria ) throws SAXException;    /**     * Returns the links found in this HTML segment in the order in which they appear.     * @exception SAXException thrown if there is an error parsing the segment.     **/    public WebLink[] getLinks() throws SAXException;    /**     * Returns the first link which contains the specified text.     * @exception SAXException thrown if there is an error parsing the segment.     **/    public WebLink getLinkWith( String text ) throws SAXException;    /**     * Returns the first link which contains an image with the specified text as its 'alt' attribute.     * @exception SAXException thrown if there is an error parsing the segment.     **/    public WebLink getLinkWithImageText( String text ) throws SAXException;    /**     * Returns the first link found in the page matching the specified criteria.     * @exception SAXException thrown if there is an error parsing the response.     **/    public WebLink getFirstMatchingLink( HTMLElementPredicate predicate, Object value ) throws SAXException;    /**     * Returns all links found in the page matching the specified criteria.     * @exception SAXException thrown if there is an error parsing the response.     **/    public WebLink[] getMatchingLinks( HTMLElementPredicate predicate, Object criteria ) throws SAXException;    /**     * Returns the images found in the page in the order in which they appear.     * @exception SAXException thrown if there is an error parsing the segment.     **/    public WebImage[] getImages() throws SAXException;    /**     * Returns the image found in the page with the specified name.     * @exception SAXException thrown if there is an error parsing the segment.     **/    public WebImage getImageWithName( String name ) throws SAXException;    /**     * Returns the first image found in the page with the specified src attribute.     * @exception SAXException thrown if there is an error parsing the segment.     **/    public WebImage getImageWithSource( String source ) throws SAXException;    /**     * Returns the first image found in the page with the specified alt attribute.     * @exception SAXException thrown if there is an error parsing the segment.     **/    public WebImage getImageWithAltText( String source ) throws SAXException;    /**     * Returns the applets found in the page in the order in which they appear.     * @exception SAXException thrown if there is an error parsing the segment.     **/    public WebApplet[] getApplets() throws SAXException;    /**     * Returns the top-level block elements found in the page in the order in which they appear.     * @exception SAXException thrown if there is an error parsing the segment.     *     * @since 1.6     */    public TextBlock[] getTextBlocks() throws SAXException;    /**     * Returns the top-level tables found in this HTML segment in the order in which     * they appear.     * @exception SAXException thrown if there is an error parsing the segment.     **/    public WebTable[] getTables() throws SAXException;    /**     * Returns the first table in the response which matches the specified predicate and value.     * Will recurse into any nested tables, as needed.     * @return the selected table, or null if none is found     **/    public WebTable getFirstMatchingTable( HTMLElementPredicate predicate, Object criteria ) throws SAXException;    /**     * Returns all tables found in the page matching the specified criteria.     * @exception SAXException thrown if there is an error parsing the response.     **/    public WebTable[] getMatchingTables( HTMLElementPredicate predicate, Object criteria ) throws SAXException;    /**     * Returns the first table in this HTML segment which has the specified text as the full text of     * its first non-blank row and non-blank column. Will recurse into any nested tables, as needed.     * @return the selected table, or null if none is found     * @exception SAXException thrown if there is an error parsing the segment.     **/    public WebTable getTableStartingWith( final String text ) throws SAXException;            /**     * Returns the first table in this HTML segment which has the specified text as a prefix of the text      * in its first non-blank row and non-blank column. Will recurse into any nested tables, as needed.     * @return the selected table, or null if none is found     * @exception SAXException thrown if there is an error parsing the segment.     **/    public WebTable getTableStartingWithPrefix( String text ) throws SAXException;            /**     * Returns the first table in this HTML segment which has the specified text as its summary attribute.      * Will recurse into any nested tables, as needed.     * @return the selected table, or null if none is found     * @exception SAXException thrown if there is an error parsing the segment.     **/    public WebTable getTableWithSummary( String summary ) throws SAXException;            /**     * Returns the first table in this HTML segment which has the specified text as its ID attribute.      * Will recurse into any nested tables, as needed.     * @return the selected table, or null if none is found     * @exception SAXException thrown if there is an error parsing the segment.     **/    public WebTable getTableWithID( final String ID ) throws SAXException;}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -