Home | History | Annotate | Download | only in converter

Lines Matching defs:annotationField

143         IAnnotationField annotationField = annotationFields.iterator().next();

144 assertEquals("value", annotationField.getName());
145 assertTrue(annotationField.getType() instanceof IPrimitiveType);
146 IPrimitiveType annotationFieldType = (IPrimitiveType)annotationField.getType();
149 assertTrue(annotationField.getDefaultValue() instanceof Integer);
150 Integer defaultValue = (Integer)annotationField.getDefaultValue();
227 IAnnotationField annotationField = annotationFields.iterator().next();
228 assertEquals("value", annotationField.getName());
229 assertTrue(annotationField.getType() instanceof IPrimitiveType);
230 IPrimitiveType annotationFieldType = (IPrimitiveType)annotationField.getType();
234 assertTrue(annotationField.getDefaultValue() instanceof Double);
235 Double defaultValue = (Double)annotationField.getDefaultValue();