001package com.ericlam.mc.eld.annotations;
002
003import java.lang.annotation.*;
004
005/**
006 * 定義文件配置
007 */
008@Inherited
009@Retention(RetentionPolicy.RUNTIME)
010@Target(ElementType.TYPE)
011public @interface Resource {
012
013    /**
014     *
015     * @return 文件名稱
016     */
017    String locate();
018}