mirror of
https://github.com/i-net-software/JWebAssembly.git
synced 2025-04-04 04:55:49 +02:00
14 lines
321 B
Java
14 lines
321 B
Java
|
package org.webassembly.annotation;
|
||
|
|
||
|
import java.lang.annotation.ElementType;
|
||
|
import java.lang.annotation.Retention;
|
||
|
import java.lang.annotation.RetentionPolicy;
|
||
|
import java.lang.annotation.Target;
|
||
|
|
||
|
@Retention(RetentionPolicy.CLASS)
|
||
|
@Target(ElementType.METHOD)
|
||
|
public @interface Export {
|
||
|
|
||
|
String name() default "";
|
||
|
}
|