All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.feilong.lib.xstream.annotations.XStreamAliasType Maven / Gradle / Ivy

Go to download

feilong is a suite of core and expanded libraries that include utility classes, http, excel,cvs, io classes, and much much more.

There is a newer version: 4.0.8
Show newest version
/*
 * Copyright (C) 2013 XStream Committers.
 * All rights reserved.
 *
 * Created on 12.07.2013 by Joerg Schaible
 */
package com.feilong.lib.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 define an XStream type alias.
 * 
 * @author Jörg Schaible
 * @since 1.4.5
 * @see com.feilong.lib.xstream.XStream#aliasType(String, Class)
 */
@Retention(RetentionPolicy.RUNTIME)
@Target(ElementType.TYPE)
public @interface XStreamAliasType{

    /**
     * The name of the type alias.
     */
    public String value();
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy