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 import org.codehaus.xfire.aegis.type.Type; 9 10 @Retention(RetentionPolicy.RUNTIME) 11 @Target(ElementType.METHOD) 12 public @interface XmlElement 13 { 14 Class type() default Type.class; 15 String name() default ""; 16 String namespace() default ""; 17 boolean nillable() default true; 18 }