001package de.cuioss.test.jsf.config; 002 003import de.cuioss.test.jsf.config.decorator.ComponentConfigDecorator; 004 005/** 006 * Instances of this are to be called by the test framework <em>after</em> the 007 * initial setup is done. 008 * 009 * @author Oliver Wolff 010 */ 011public interface ComponentConfigurator extends JsfTestContextConfigurator { 012 013 /** 014 * Callback method for interacting with the {@link ComponentConfigDecorator} at 015 * the correct time. 016 * 017 * @param decorator is never null 018 */ 019 void configureComponents(ComponentConfigDecorator decorator); 020}