Added duytschen soep

This commit is contained in:
Willem Cazander 2022-11-03 18:26:37 +01:00
parent 71378f3027
commit beb774a773
2 changed files with 23 additions and 0 deletions

View file

@ -35,4 +35,11 @@ public @interface DuytsDocMethod注 {
@DuytsDoc注(locale= "hi", purpose = "सभी अनुवादित अपवाद एक विधि फेंक सकते हैं")
})
DuytsDocThrows注[] exceptions() default {};
@DuytsDocMethod注(babel = {
@DuytsDoc注(locale= "en", purpose = "All the translated messages a method use"),
@DuytsDoc注(locale= "zh", purpose = "方法使用的所有翻譯消息"),
@DuytsDoc注(locale= "hi", purpose = "सभी अनुवादित संदेश एक विधि का उपयोग करते हैं")
})
DuytsDocSoep注[] messages() default {};
}

View file

@ -0,0 +1,16 @@
package ᒢᐩᐩ.ᒡᒢᑊᒻᒻᓫᔿ.ᒃᣔᒃᓫᒻ.ᑊᐣᓑᖮᐪᔆ;
import java.lang.annotation.ElementType;
import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;
import java.lang.annotation.Target;
@DuytsDocAuthor注(name = "للَّٰهِilLצسُو", copyright = "©Δ∞ 仙上主天")
@Retention(RetentionPolicy.RUNTIME)
@Target({ElementType.METHOD})
public @interface DuytsDocSoep注 {
String id();
DuytsDoc注[] babel();
}