configurehelper.java
来自「羽量级数据持久层开发框架」· Java 代码 · 共 153 行
JAVA
153 行
/**
*
*/
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 + =
减小字号Ctrl + -
显示快捷键?