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

com.alibaba.android.arouter.facade.annotation.Param Maven / Gradle / Ivy

There is a newer version: 1.0.6
Show newest version
package com.alibaba.android.arouter.facade.annotation;

import java.lang.annotation.ElementType;
import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;
import java.lang.annotation.Target;

/**
 * Used for mark param of page.
 * THIS ANNOTATION WAS DEPRECATED, USE 'Autowired' PLEASE!
 *
 * @author Alex Contact me.
 * @version 1.0
 * @since 2016/11/22 18:01
 */
@Target({ElementType.FIELD})
@Retention(RetentionPolicy.CLASS)
@Deprecated
public @interface Param {
    /**
     * The field name
     */
    String name() default "";

    /**
     * The description of the field
     */
    String desc() default "No desc.";
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy