appInfos = annotation.getAppInfo();
appInfo = (AppInfo) appInfos.nextElement();
jdoContent = appInfo.getJdoContent();
assertEquals(1, jdoContent.size());
Column c = (Column) jdoContent.get(0);
assertEquals("isbn", c.getName());
assertEquals("varchar", c.getType());
ElementDecl title = bookType.getElementDecl("title");
annotations = title.getAnnotations();
annotation = (Annotation) annotations.nextElement();
appInfos = annotation.getAppInfo();
appInfo = (AppInfo) appInfos.nextElement();
jdoContent = appInfo.getJdoContent();
assertEquals(1, jdoContent.size());
c = (Column) jdoContent.get(0);
assertEquals("title", c.getName());
assertEquals("varchar", c.getType());
ElementDecl author = bookType.getElementDecl("author");
annotations = author.getAnnotations();
annotation = (Annotation) annotations.nextElement();
appInfos = annotation.getAppInfo();