replicated = type.getAnnotation(Replicate.class) != null;
blockLifecycleEventsRequired = type.getAnnotation(RequiresBlockLifecycleEvents.class) != null;
ForceBlockActive forceBlockActiveAnnotation = type.getAnnotation(ForceBlockActive.class);
if (forceBlockActiveAnnotation != null) {
forceBlockActive = true;
retainUnalteredOnBlockChange = forceBlockActiveAnnotation.retainUnalteredOnBlockChange();
}
for (ComponentFieldMetadata<T, ?> field : getFields()) {
if (field.isReplicated()) {
replicated = true;