Files
redkale/src/com/wentch/redkale/net/sncp/SncpCall.java
kamhung ef8a137c37
2015-12-07 17:03:18 +08:00

25 lines
567 B
Java

/*
* To change this license header, choose License Headers in Project Properties.
* To change this template file, choose Tools | Templates
* and open the template in the editor.
*/
package com.wentch.redkale.net.sncp;
import com.wentch.redkale.util.*;
import java.lang.annotation.*;
import static java.lang.annotation.RetentionPolicy.RUNTIME;
/**
* 参数回写
*
* @author zhangjx
*/
@Inherited
@Documented
@Target({ElementType.PARAMETER})
@Retention(RUNTIME)
public @interface SncpCall {
Class<? extends Attribute> value();
}