001package com.ericlam.mc.eld.annotations;
002
003import java.lang.annotation.*;
004
005/**
006 * 指定默認語言
007 */
008@Inherited
009@Target(ElementType.TYPE)
010@Retention(RetentionPolicy.RUNTIME)
011public @interface DefaultLanguage {
012
013    /**
014     *
015     * @return 默認語言數值
016     */
017    String value();
018
019}