📄 ixmlpullparser.java
字号:
/* * Licensed to the Apache Software Foundation (ASF) under one or more * contributor license agreements. See the NOTICE file distributed with * this work for additional information regarding copyright ownership. * The ASF licenses this file to You under the Apache License, Version 2.0 * (the "License"); you may not use this file except in compliance with * the License. You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */package org.apache.wicket.markup.parser;import java.io.IOException;import java.io.InputStream;import java.text.ParseException;import org.apache.wicket.util.resource.ResourceStreamNotFoundException;/** * The interface of a streaming XML parser as required by Wicket. * * @author Juergen Donnerstag * @author Jonathan Locke */public interface IXmlPullParser extends IMarkupFilter{ /** * Return the encoding applied while reading the markup resource. The encoding is determined by * analyzing the <?xml version=".." encoding=".." ?> tag. * * @return if null, JVM defaults have been used. */ String getEncoding(); /** * Return the XML declaration string, in case if found in the markup. * * @return Null, if not found. */ String getXmlDeclaration(); /** * Wicket dissects the markup into Wicket relevant tags and raw markup, which is not further * analyzed by Wicket. The method getInputFromPositionMarker() is used to access the raw markup. * * @param toPos * To position * @return The raw markup in between the position marker and toPos */ CharSequence getInputFromPositionMarker(int toPos); /** * Wicket dissects the markup into Wicket relevant tags and raw markup, which is not further * analyzed by Wicket. The getInputSubsequence() method is used to access the raw markup. * * @param fromPos * From position * @param toPos * To position * @return The raw markup in between fromPos and toPos */ CharSequence getInput(final int fromPos, final int toPos); /** * Dissect the XML markup into tags and text. Tags are further analyzed into comments, CDATA, * processing instruction etc as well as "standard" tags. By means of getType() the type of the * current element can be retrieved and the appropriate getters must used to get hold of the * information. * * @return false, if end-of-file as been reached. If true, than use getType() to determine what * has been found. * @throws ParseException */ boolean next() throws ParseException; /** * Parse the markup provided. Use nextTag() to access the tags contained one after another. * <p> * Note: xml character encoding is NOT applied. It is assumed the input provided does have the * correct encoding already. * * @param string * The markup to be parsed * @throws IOException * Error while reading the resource * @throws ResourceStreamNotFoundException * Resource not found */ void parse(final CharSequence string) throws IOException, ResourceStreamNotFoundException; /** * Reads and parses markup from an input stream, using UTF-8 encoding by default when not * specified in XML declaration. Use nextTag() to access the tags contained, one after another. * * @param inputStream * The input stream to read and parse * @throws IOException * Error while reading the resource * @throws ResourceStreamNotFoundException * Resource not found */ public abstract void parse(final InputStream inputStream) throws IOException, ResourceStreamNotFoundException; /** * Reads and parses markup from an input stream. Use nextTag() to access the tags contained, one * after another. * * @param inputStream * A resource like e.g. a file * @param encoding * Use null to apply JVM/OS default * @throws IOException * Error while reading the resource * @throws ResourceStreamNotFoundException * Resource not found */ void parse(InputStream inputStream, final String encoding) throws IOException, ResourceStreamNotFoundException; /** * Set the position marker of the markup at the current position. */ void setPositionMarker(); /** * Set the position marker of the markup * * @param pos */ void setPositionMarker(final int pos);}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -