01: /*
02: * File: MOSProfile.java
03: * Project: jMOS, com.aranova.java.jmos.annotations
04: * Revision: 0.9 - Inicial
05: * Date: 27-oct-2005 19:00:27
06: *
07: * Copyright (C) Aragón Innovación Tecnológica S.L.L.
08: * All rights reserved.
09: *
10: * This software is distributed under the terms of the Aranova License version 1.0.
11: * See the terms of the Aranova License in the documentation provided with this software.
12: */
13:
14: package com.aranova.java.jmos.annotations;
15:
16: import java.lang.annotation.ElementType;
17: import java.lang.annotation.Retention;
18: import java.lang.annotation.RetentionPolicy;
19: import java.lang.annotation.Target;
20:
21: /**
22: * Annotation for define MOS Profile in package.
23: *
24: * @author <a href="http://www.aranova.net/contactar/">Daniel Sánchez</a>
25: * @version 0.9.1
26: * @since 0.9
27: */
28: @Target(ElementType.PACKAGE)
29: @Retention(RetentionPolicy.RUNTIME)
30: public @interface MOSProfile {
31: /**
32: * @return version of field.
33: */
34: String version() default "";
35: }
|