* Construct the action.
* @param elementId The id of the html element for appending content to.
* @param components The list of components representing the content to render through this action.
*/
public AppendAsFirstContentAction(String elementId, Component... components) {
super(new DefaultMatcher(elementId));
this.components = Arrays.asList(components);
}