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

📄 xstreamalias.java

📁 xstream是一个把java object序列化成xml文件的开源库,轻便好用
💻 JAVA
字号:
package com.thoughtworks.xstream.annotations;import java.lang.annotation.Retention;import java.lang.annotation.RetentionPolicy;/** * Annotation used to define an XStream class or field value. This annotation should only be used with classes and fields * * @author Emil Kirschner * @author Chung-Onn Cheong */@Retention(RetentionPolicy.RUNTIME)public @interface XStreamAlias {    /**     * The value of the class or field value     */    public String value();    public Class<?> impl() default Void.class; //Use Void to denote as Null}

⌨️ 快捷键说明

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