rmarinsky
03/17/2016, 11:53 AMmikehearn
03/17/2016, 11:55 AMmikehearn
03/17/2016, 11:55 AMmikehearn
03/17/2016, 11:55 AMrmarinsky
03/17/2016, 11:56 AMmichaelrocks
03/17/2016, 12:21 PM@Retention(RetentionPolicy.RUNTIME)
@Target(ElementType.METHOD)
public @interface Inner {
}
@Retention(RetentionPolicy.RUNTIME)
public @interface Outer {
@Inner
int value();
}
Seems there’s no way to do the same thing in Kotlin.michaelrocks
03/17/2016, 12:24 PMorangy
@Target(AnnotationTarget.PROPERTY_GETTER)
annotation class Inner
annotation class Outer(@get:Inner val value: Int)
michaelrocks
03/17/2016, 12:37 PMorangy
michaelrocks
03/17/2016, 12:38 PMInner
annotation applied in the bytecode. It just disappears.orangy
michaelrocks
03/17/2016, 12:49 PMeshioji
03/17/2016, 2:18 PMeshioji
03/17/2016, 2:18 PMeshioji
03/17/2016, 2:18 PMorangy
eshioji
03/17/2016, 2:19 PMmichaelrocks
03/17/2016, 2:37 PMmichaelrocks
03/17/2016, 2:39 PMmichaelrocks
03/17/2016, 2:42 PM./gradlew publishToMavenLocal test
eshioji
03/17/2016, 2:44 PMorangy
user
03/17/2016, 2:52 PMmichaelrocks
03/17/2016, 3:07 PMuser
03/17/2016, 3:11 PMmichaelrocks
03/17/2016, 3:18 PMkirillrakhman
03/17/2016, 3:20 PMmichaelrocks
03/17/2016, 3:26 PMuhe
03/17/2016, 3:55 PM