001package org.unix4j.codegen.annotation; 002 003import java.lang.annotation.Documented; 004import java.lang.annotation.ElementType; 005import java.lang.annotation.Retention; 006import java.lang.annotation.RetentionPolicy; 007import java.lang.annotation.Target; 008 009@Target({ElementType.TYPE, ElementType.METHOD, ElementType.FIELD}) 010@Retention(RetentionPolicy.RUNTIME) 011@Documented 012public @interface Javadoc { 013 String value(); 014}