Package org.refcodes.mixin
Interface ObjectAccessor.ObjectBuilder<B extends ObjectAccessor.ObjectBuilder<B>>
-
- Type Parameters:
B- The builder to return in order to be able to apply multiple build operations.
- Enclosing interface:
- ObjectAccessor
public static interface ObjectAccessor.ObjectBuilder<B extends ObjectAccessor.ObjectBuilder<B>>Provides a builder method for a object property returning the builder for applying multiple build operations.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description BwithObject(java.lang.Object aObject)Sets the object for the object property.
-
-
-
Method Detail
-
withObject
B withObject(java.lang.Object aObject)
Sets the object for the object property.- Parameters:
aObject- The object to be stored by the object property.- Returns:
- The builder for applying multiple build operations.
-
-