1 package org.codehaus.xfire.aegis.type.java5; 2 3 import java.lang.annotation.ElementType; 4 import java.lang.annotation.Retention; 5 import java.lang.annotation.RetentionPolicy; 6 import java.lang.annotation.Target; 7 8 @Retention(RetentionPolicy.RUNTIME) 9 @Target(ElementType.METHOD) 10 public @interface XmlElement 11 { 12 String type() default ""; 13 String name() default ""; 14 String namespace() default ""; 15 boolean isNillable() default true; 16 }