xstreamcontainedtype.java
来自「xstream是一个把java object序列化成xml文件的开源库,轻便好用」· Java 代码 · 共 21 行
JAVA
21 行
package com.thoughtworks.xstream.annotations;import java.lang.annotation.ElementType;import java.lang.annotation.Retention;import java.lang.annotation.RetentionPolicy;import java.lang.annotation.Target;/** * Annotation used to specify the value of objects contained by a collection. * This annotation can only be applied to class attributes, * but is only effective on collections and collection specializations. * * @author Emil Kirschner * @author Chung-Onn Cheong */@Retention(RetentionPolicy.RUNTIME)@Target(ElementType.FIELD)public @interface XStreamContainedType { }
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?