Uses of Class
org.jvnet.annox.model.XAnnotationField

Packages that use XAnnotationField
org.jvnet.annox.model   
org.jvnet.annox.parser   
 

Uses of XAnnotationField in org.jvnet.annox.model
 

Subclasses of XAnnotationField in org.jvnet.annox.model
static class XAnnotationField.XAnnotation
           
static class XAnnotationField.XAnnotationArray
          Annotation array field.
static class XAnnotationField.XArrayField<T>
          Defines an array field.
static class XAnnotationField.XBoolean
           
static class XAnnotationField.XBooleanArray
           
static class XAnnotationField.XByte
           
static class XAnnotationField.XByteArray
           
static class XAnnotationField.XChar
           
static class XAnnotationField.XCharArray
           
static class XAnnotationField.XClass
           
static class XAnnotationField.XClassArray
           
static class XAnnotationField.XDouble
           
static class XAnnotationField.XDoubleArray
           
static class XAnnotationField.XEnum
           
static class XAnnotationField.XEnumArray
           
static class XAnnotationField.XField<T>
          Basic annotation field.
static class XAnnotationField.XFixedArrayField<T>
          Array field with fixed value.
static class XAnnotationField.XFixedField<T>
          Annotation field with a fixed value.
static class XAnnotationField.XFloat
           
static class XAnnotationField.XFloatArray
           
static class XAnnotationField.XInt
           
static class XAnnotationField.XIntArray
           
static class XAnnotationField.XLong
           
static class XAnnotationField.XLongArray
           
static class XAnnotationField.XShort
           
static class XAnnotationField.XShortArray
           
static class XAnnotationField.XString
           
static class XAnnotationField.XStringArray
           
 

Methods in org.jvnet.annox.model that return types with arguments of type XAnnotationField
 List<XAnnotationField<?>> XAnnotation.getFieldsList()
          Returns the list of the fields.
 Map<String,XAnnotationField<?>> XAnnotation.getFieldsMap()
          Returns the map of the fields.
 

Constructors in org.jvnet.annox.model with parameters of type XAnnotationField
XAnnotation(Class<? extends Annotation> annotationClass, XAnnotationField<?>... fields)
          Constructs an xannotation for the given annotation class.
 

Uses of XAnnotationField in org.jvnet.annox.parser
 

Methods in org.jvnet.annox.parser that return XAnnotationField
 XAnnotationField<XAnnotation[]> XAnnotationFieldParser.XAnnotationItemArrayFieldParser.construct(String name, Annotation[] annotations, Class<?> type)
           
 XAnnotationField<XAnnotation> XAnnotationFieldParser.XAnnotationItemFieldParser.construct(String name, Annotation annotation, Class<?> type)
           
 XAnnotationField<Boolean[]> XAnnotationFieldParser.XBooleanArrayFieldParser.construct(String name, Boolean[] value, Class<?> type)
           
 XAnnotationField<Boolean> XAnnotationFieldParser.XBooleanFieldParser.construct(String name, Boolean value, Class<?> type)
           
 XAnnotationField<Byte[]> XAnnotationFieldParser.XByteArrayFieldParser.construct(String name, Byte[] value, Class<?> type)
           
 XAnnotationField<Byte> XAnnotationFieldParser.XByteFieldParser.construct(String name, Byte value, Class<?> type)
           
 XAnnotationField<Character[]> XAnnotationFieldParser.XCharArrayFieldParser.construct(String name, Character[] value, Class<?> type)
           
 XAnnotationField<Character> XAnnotationFieldParser.XCharFieldParser.construct(String name, Character value, Class<?> type)
           
 XAnnotationField<Double[]> XAnnotationFieldParser.XDoubleArrayFieldParser.construct(String name, Double[] value, Class<?> type)
           
 XAnnotationField<Double> XAnnotationFieldParser.XDoubleFieldParser.construct(String name, Double value, Class<?> type)
           
 XAnnotationField<Enum[]> XAnnotationFieldParser.XEnumArrayFieldParser.construct(String name, Enum[] value, Class<?> type)
           
 XAnnotationField<Enum> XAnnotationFieldParser.XEnumFieldParser.construct(String name, Enum value, Class<?> type)
           
 XAnnotationField<Float[]> XAnnotationFieldParser.XFloatArrayFieldParser.construct(String name, Float[] value, Class<?> type)
           
 XAnnotationField<Float> XAnnotationFieldParser.XFloatFieldParser.construct(String name, Float value, Class<?> type)
           
 XAnnotationField<Integer[]> XAnnotationFieldParser.XIntArrayFieldParser.construct(String name, Integer[] value, Class<?> type)
           
 XAnnotationField<Integer> XAnnotationFieldParser.XIntFieldParser.construct(String name, Integer value, Class<?> type)
           
 XAnnotationField<Long[]> XAnnotationFieldParser.XLongArrayFieldParser.construct(String name, Long[] value, Class<?> type)
           
 XAnnotationField<Long> XAnnotationFieldParser.XLongFieldParser.construct(String name, Long value, Class<?> type)
           
 XAnnotationField<Class[]> XAnnotationFieldParser.XClassArrayFieldParser.construct(String name, Object[] value, Class<?> type)
           
 XAnnotationField<Class> XAnnotationFieldParser.XClassFieldParser.construct(String name, Object value, Class<?> type)
           
 XAnnotationField<Short[]> XAnnotationFieldParser.XShortArrayFieldParser.construct(String name, Short[] value, Class<?> type)
           
 XAnnotationField<Short> XAnnotationFieldParser.XShortFieldParser.construct(String name, Short value, Class<?> type)
           
 XAnnotationField<String[]> XAnnotationFieldParser.XStringArrayFieldParser.construct(String name, String[] value, Class<?> type)
           
 XAnnotationField<String> XAnnotationFieldParser.XStringFieldParser.construct(String name, String value, Class<?> type)
           
abstract  XAnnotationField<T[]> XAnnotationFieldParser.XArrayFieldParser.construct(String name, V[] value, Class<?> type)
           
abstract  XAnnotationField<T> XAnnotationFieldParser.construct(String name, V value, Class<?> type)
           
abstract  XAnnotationField<T> XAnnotationFieldParser.XFieldParser.construct(String name, V value, Class<?> type)
           
 XAnnotationField<T> XAnnotationFieldParser.XGenericFieldParser.construct(String name, V value, Class<?> type)
           
 XAnnotationField<XAnnotation[]> XAnnotationFieldParser.XAnnotationItemXArrayFieldParser.construct(String name, XAnnotation[] annotations, Class<?> type)
           
 XAnnotationField<XAnnotation> XAnnotationFieldParser.XAnnotationXItemFieldParser.construct(String name, XAnnotation annotation, Class<?> type)
           
abstract  XAnnotationField<T> XAnnotationFieldParser.parse(Annotation annotation, String name, Class<?> type)
           
 XAnnotationField<T> XAnnotationFieldParser.XFieldParser.parse(Annotation annotation, String name, Class<?> type)
           
 XAnnotationField<T[]> XAnnotationFieldParser.XArrayFieldParser.parse(Annotation annotation, String name, Class<?> type)
           
 XAnnotationField<XAnnotation> XAnnotationFieldParser.XAnnotationItemFieldParser.parse(Annotation annotation, String name, Class<?> type)
           
 XAnnotationField<XAnnotation> XAnnotationFieldParser.XAnnotationXItemFieldParser.parse(Annotation annotation, String name, Class<?> type)
           
 XAnnotationField<XAnnotation[]> XAnnotationFieldParser.XAnnotationItemArrayFieldParser.parse(Annotation annotation, String name, Class<?> type)
           
 XAnnotationField<XAnnotation[]> XAnnotationFieldParser.XAnnotationItemXArrayFieldParser.parse(Annotation annotation, String name, Class<?> type)
           
 XAnnotationField<T> XAnnotationFieldParser.XGenericFieldParser.parse(Annotation annotation, String name, Class<?> type)
           
abstract  XAnnotationField<T> XAnnotationFieldParser.parse(Element element, String name, Class<?> type)
           
 XAnnotationField<T> XAnnotationFieldParser.XFieldParser.parse(Element element, String name, Class<?> type)
           
 XAnnotationField<T[]> XAnnotationFieldParser.XArrayFieldParser.parse(Element element, String name, Class<?> type)
           
 XAnnotationField<XAnnotation> XAnnotationFieldParser.XAnnotationItemFieldParser.parse(Element annotationElement, String name, Class<?> type)
           
 XAnnotationField<XAnnotation> XAnnotationFieldParser.XAnnotationXItemFieldParser.parse(Element annotationElement, String name, Class<?> type)
           
 XAnnotationField<XAnnotation[]> XAnnotationFieldParser.XAnnotationItemArrayFieldParser.parse(Element annotationElement, String name, Class<?> type)
           
 XAnnotationField<XAnnotation[]> XAnnotationFieldParser.XAnnotationItemXArrayFieldParser.parse(Element annotationElement, String name, Class<?> type)
           
 XAnnotationField<T> XAnnotationFieldParser.XGenericFieldParser.parse(Element element, String name, Class<?> type)
           
 XAnnotationField<?> XAnnotationParser.parseField(Annotation annotation, String name, Class type)
           
 XAnnotationField<?> XAnnotationParser.parseField(Element annotationElement, String name, Class type)
           
 XAnnotationField<?>[] XAnnotationParser.parseFields(Annotation annotation)
           
 XAnnotationField<?>[] XAnnotationParser.parseFields(Element annotationElement, Class<? extends Annotation> annotationClass)
           
 



Copyright © 2006-2012 Highsource. All Rights Reserved.