📄 configurehelper.java
字号:
/**
*
*/
package org.speedframework.utilities;
//~--- non-JDK imports --------------------------------------------------------
import org.xml.sax.Attributes;
import org.xml.sax.ContentHandler;
import org.xml.sax.Locator;
import org.xml.sax.SAXException;
/**
* @author Ma Huihuang
* <p/>
* 2007-6-10
*/
public class ConfigureHelper implements ContentHandler
{
/** 属性描述信息 */
private ConfigDocument configDocument;
/**
* 方法描述信息,
* 描述方法是做什么的,
* 如何调用,最好给出调用代码示例。
*
* @param arg0
* @param arg1
* @param arg2
*
* @throws SAXException
*/
public void characters(char[] arg0, int arg1, int arg2) throws SAXException {}
/**
* 方法描述信息,
* 描述方法是做什么的,
* 如何调用,最好给出调用代码示例。
*
* @throws SAXException
*/
public void endDocument() throws SAXException {}
/**
* 方法描述信息,
* 描述方法是做什么的,
* 如何调用,最好给出调用代码示例。
*
* @param arg0
* @param arg1
* @param arg2
*
* @throws SAXException
*/
public void endElement(String arg0, String arg1, String arg2) throws SAXException {}
/**
* 方法描述信息,
* 描述方法是做什么的,
* 如何调用,最好给出调用代码示例。
*
* @param arg0
*
* @throws SAXException
*/
public void endPrefixMapping(String arg0) throws SAXException {}
/**
* 方法描述信息,
* 描述方法是做什么的,
* 如何调用,最好给出调用代码示例。
*
* @param arg0
* @param arg1
* @param arg2
*
* @throws SAXException
*/
public void ignorableWhitespace(char[] arg0, int arg1, int arg2) throws SAXException {}
/**
* 方法描述信息,
* 描述方法是做什么的,
* 如何调用,最好给出调用代码示例。
*
* @param arg0
* @param arg1
*
* @throws SAXException
*/
public void processingInstruction(String arg0, String arg1) throws SAXException {}
/**
* 方法描述信息,
* 描述方法是做什么的,
* 如何调用,最好给出调用代码示例。
*
* @param arg0
*/
public void setDocumentLocator(Locator arg0) {}
/**
* 方法描述信息,
* 描述方法是做什么的,
* 如何调用,最好给出调用代码示例。
*
* @param arg0
*
* @throws SAXException
*/
public void skippedEntity(String arg0) throws SAXException {}
/**
* 方法描述信息,
* 描述方法是做什么的,
* 如何调用,最好给出调用代码示例。
*
* @throws SAXException
*/
public void startDocument() throws SAXException {}
/**
* 方法描述信息,
* 描述方法是做什么的,
* 如何调用,最好给出调用代码示例。
*
* @param arg0
* @param arg1
* @param arg2
* @param arg3
*
* @throws SAXException
*/
public void startElement(String arg0, String arg1, String arg2, Attributes arg3) throws SAXException {}
/**
* 方法描述信息,
* 描述方法是做什么的,
* 如何调用,最好给出调用代码示例。
*
* @param arg0
* @param arg1
*
* @throws SAXException
*/
public void startPrefixMapping(String arg0, String arg1) throws SAXException {}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -