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

📄 errorwriter.java

📁 xstream是一个把java object序列化成xml文件的开源库,轻便好用
💻 JAVA
字号:
package com.thoughtworks.xstream.converters;/** * To aid debugging, some components are passed an ErrorWriter * when things go wrong, allowing them to add information * to the error message that may be helpful to diagnose problems. * * @author Joe Walnes */public interface ErrorWriter {    /**     * Add some information to the error message.     *     * @param name        Something to identify the type of information (e.g. 'XPath').     * @param information Detail of the message (e.g. '/blah/moo[3]'     */    void add(String name, String information);}

⌨️ 快捷键说明

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