* @param configuration the configuration of the layout. Must not be <code>null</code>.
*/
public FluidGridLayout( FluidGridConfiguration configuration ) {
whenNull( configuration ).throwIllegalArgument( "configuration must not be null" );
this.configuration = configuration;
this.notifier = new QueryNotifier();
}