All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.timepedia.exporter.client.Export Maven / Gradle / Ivy

package org.timepedia.exporter.client;

import java.lang.annotation.ElementType;
import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;
import java.lang.annotation.Target;

/**
 * Marks a method, field, constructor, or class as exportable and allows its Javascript name to be
 * overriden.
 * 
 * When a class is marked, all public methods will be exported unless them are marked with NoExport
 */
@Target({ElementType.METHOD, ElementType.FIELD, ElementType.CONSTRUCTOR, ElementType.TYPE})
@Retention(RetentionPolicy.RUNTIME)
public @interface Export {

  boolean all() default false;

  String value() default "";
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy