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

hprose.common.ByRef Maven / Gradle / Ivy

/**********************************************************\
|                                                          |
|                          hprose                          |
|                                                          |
| Official WebSite: http://www.hprose.com/                 |
|                   http://www.hprose.org/                 |
|                                                          |
\**********************************************************/
/**********************************************************\
 *                                                        *
 * ByRef.java                                             *
 *                                                        *
 * ByRef Annotation for Java.                             *
 *                                                        *
 * LastModified: Apr 21, 2016                             *
 * Author: Ma Bingyao                   *
 *                                                        *
\**********************************************************/
package hprose.common;

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

@Retention(RetentionPolicy.RUNTIME)
@Target(ElementType.METHOD)
public @interface ByRef {
    boolean value() default true;
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy