01: /*
02:
03: This software is OSI Certified Open Source Software.
04: OSI Certified is a certification mark of the Open Source Initiative.
05:
06: The license (Mozilla version 1.0) can be read at the MMBase site.
07: See http://www.MMBase.org/license
08:
09: */
10: package org.mmbase.util.functions;
11:
12: import java.lang.annotation.*;
13:
14: /**
15: *
16: *
17: * @author Michiel Meeuwissen
18: * @version $Id: Required.java,v 1.2 2007/08/06 13:01:11 michiel Exp $
19: * @since MMBase-1.9
20: */
21: @Retention(RetentionPolicy.RUNTIME)
22: @Target(ElementType.METHOD)
23: public @interface Required {
24:
25: }
|