@Target(value=METHOD) @Retention(value=RUNTIME) public @interface Initializer
FrameInitializer.
For each interface in the hierarchy initializer methods will be called.
interface A {
abstract class Impl implements A {
@Initializer
void init() {
//Called when a framed vertex or edge is added to the graph.
}
}
}
Copyright © 2011-2015 JBoss by Red Hat. All Rights Reserved.