use of org.qi4j.runtime.property.PropertyModel in project qi4j-sdk by Qi4j.
the class EntityStateInstance method propertyFor.
@Override
@SuppressWarnings("unchecked")
public <T> Property<T> propertyFor(AccessibleObject accessor) throws IllegalArgumentException {
Map<AccessibleObject, Object> state = state();
Property<T> property = (Property<T>) state.get(accessor);
if (property == null) {
PropertyModel entityPropertyModel = stateModel.propertyModelFor(accessor);
property = new EntityPropertyInstance<>(entityState instanceof BuilderEntityState ? entityPropertyModel.getBuilderInfo() : entityPropertyModel, entityState);
state.put(accessor, property);
}
return property;
}
use of org.qi4j.runtime.property.PropertyModel in project qi4j-sdk by Qi4j.
the class ValueAssemblyImpl method newPropertyModel.
@Override
protected PropertyModel newPropertyModel(AccessibleObject accessor, Iterable<Class<? extends Constraint<?, ?>>> constraintClasses) {
Iterable<Annotation> annotations = Annotations.findAccessorAndTypeAnnotationsIn(accessor);
boolean optional = first(filter(isType(Optional.class), annotations)) != null;
ValueConstraintsModel valueConstraintsModel = constraintsFor(annotations, GenericPropertyInfo.propertyTypeOf(accessor), ((Member) accessor).getName(), optional, constraintClasses, accessor);
ValueConstraintsInstance valueConstraintsInstance = null;
if (valueConstraintsModel.isConstrained()) {
valueConstraintsInstance = valueConstraintsModel.newInstance();
}
MetaInfo metaInfo = stateDeclarations.metaInfoFor(accessor);
boolean useDefaults = metaInfo.get(UseDefaults.class) != null || stateDeclarations.useDefaults(accessor);
Object initialValue = stateDeclarations.initialValueOf(accessor);
return new PropertyModel(accessor, true, useDefaults, valueConstraintsInstance, metaInfo, initialValue);
}
use of org.qi4j.runtime.property.PropertyModel in project qi4j-sdk by Qi4j.
the class ValueInstance method prepareBuilderState.
/**
* When a ValueBuilder is finished and is about to instantiate a Value, call this to ensure that the state has correct
* settings, i.e. is immutable.
*/
public void prepareBuilderState() {
for (PropertyModel propertyDescriptor : descriptor().state().properties()) {
PropertyInstance<Object> propertyInstance = (PropertyInstance<Object>) state.propertyFor(propertyDescriptor.accessor());
propertyInstance.prepareBuilderState(propertyDescriptor);
}
for (AssociationModel associationDescriptor : descriptor().state().associations()) {
state().associationFor(associationDescriptor.accessor()).setAssociationInfo(associationDescriptor);
}
for (ManyAssociationModel associationDescriptor : descriptor().state().manyAssociations()) {
state().manyAssociationFor(associationDescriptor.accessor()).setAssociationInfo(associationDescriptor);
}
}
use of org.qi4j.runtime.property.PropertyModel in project qi4j-sdk by Qi4j.
the class ValueInstance method prepareToBuild.
/**
* When a ValueBuilder is about to start, ensure that all state has builder infos, i.e. they are mutable.
*/
public void prepareToBuild() {
for (PropertyModel propertyDescriptor : descriptor().state().properties()) {
PropertyInstance<Object> propertyInstance = (PropertyInstance<Object>) state.propertyFor(propertyDescriptor.accessor());
propertyInstance.prepareToBuild(propertyDescriptor);
}
for (AssociationModel associationDescriptor : descriptor().state().associations()) {
state().associationFor(associationDescriptor.accessor()).setAssociationInfo(associationDescriptor.getBuilderInfo());
}
for (ManyAssociationModel associationDescriptor : descriptor().state().manyAssociations()) {
state().manyAssociationFor(associationDescriptor.accessor()).setAssociationInfo(associationDescriptor.getBuilderInfo());
}
}
Aggregations