Access the dedicated builder for configuration (properties). Notice that when this method is used, the called must use {@link ConfigurationBuilder#build()}to build the instance declaration configured with the right set of properties. Any attempt to use {@link #build()} will result in a new declaration with no properties associated.Good usage (produced declaration has the associated properties):
DeclarationHandle handle = builder.configure() .property("hello", "world") .build();
Bad usage (produced declaration does not have the associated properties):
builder.configure() .property("hello", "world"); DeclarationHandle handle = builder.build();
@return the instance configuration builder