} else if (annotation instanceof Description) {
Description desc = (Description)annotation;
i18nClass = desc.i18n();
i18nIdentifier = desc.value();
} else if (annotation instanceof Label) {
Label label = (Label)annotation;
i18nClass = label.i18n();
i18nIdentifier = label.value();
} else {
return;
}
assertThat(i18nClass, is(notNullValue()));
assertThat(i18nIdentifier, is(notNullValue()));