@Target(METHOD)
@Retention(RUNTIME)
@Documented
@Inherited
public @interface NeovimApiFunction
| Modifier and Type | Optional Element | Description |
|---|---|---|
int |
deprecatedIn |
Version of NeovimApis API the function/method was deprecated in
It is used for documentation
It can also be used for checking if method is supported by current version
0 means it is not deprecated
|
java.lang.String |
name |
Name of the function/method
This is the name used to call the function via RPC
|
int |
since |
Version of NeovimApis API the function/method was introduced in
It is used for documentation
It can also be used for checking if method is supported by current version
|
java.lang.String |
useFunction |
If function/method is deprecated, this can be used to point to function that should be used instead
|
java.lang.String name
int since
Copyright © 2018. All rights reserved.