package org.timepedia.exporter.client; import java.lang.annotation.ElementType; import java.lang.annotation.Retention; import java.lang.annotation.Target; import java.lang.annotation.RetentionPolicy; /** * Mark an instance method in a class so as it will return the * JavascriptObject which should be used when wrapping the class. */ @Target({ElementType.METHOD}) @Retention(RetentionPolicy.RUNTIME) public @interface ExportJsInitMethod { }