if (_creationData.isJSFViewTagRequired())
command = new SingletonContainerCreationCommand(position, IJSFConstants.TAG_IDENTIFIER_VIEW, _creationData.getTagId());
if (_creationData.isHTMLFormRequired())
{
final ContainerCreationCommand htmlFormCommand = new TagContainerCreationCommand(position, IJSFConstants.TAG_IDENTIFIER_FORM, _creationData.getTagId());
if (command != null)
command.chain(htmlFormCommand);
else
command = htmlFormCommand;
}