1
2
3
4
5
6
7
8 package de.keepondreaming.xml.annotations;
9
10 import java.lang.annotation.Documented;
11 import java.lang.annotation.ElementType;
12 import java.lang.annotation.Retention;
13 import java.lang.annotation.RetentionPolicy;
14 import java.lang.annotation.Target;
15
16 /***
17 * Used by {@link de.keepondreaming.xml.XmlConverter} if values are to be set within a {@link java.util.Map}.
18 * The name of the attribute defining the key is declared.
19 *
20 * $Author: wintermond $
21 * $Date: 2005/07/10 18:34:30 $
22 * $Log: SetKeyAttribute.java,v $
23 * Revision 1.2 2005/07/10 18:34:30 wintermond
24 * javadoc
25 *
26 */
27 @Documented
28 @Target(value={ElementType.METHOD})
29 @Retention(RetentionPolicy.RUNTIME)
30 public @interface SetKeyAttribute
31 {
32 public String keyAttribute();
33 }