Example usage for com.liferay.portal.kernel.servlet.taglib.aui ValidatorTag cleanUp

List of usage examples for com.liferay.portal.kernel.servlet.taglib.aui ValidatorTag cleanUp

Introduction

In this page you can find the example usage for com.liferay.portal.kernel.servlet.taglib.aui ValidatorTag cleanUp.

Prototype

public void cleanUp();

Source Link

Usage

From source file:com.liferay.taglib.aui.FormTag.java

License:Open Source License

@Override
protected void cleanUp() {
    super.cleanUp();

    if (_validatorTagsMap != null) {
        for (List<ValidatorTag> validatorTags : _validatorTagsMap.values()) {

            for (ValidatorTag validatorTag : validatorTags) {
                validatorTag.cleanUp();
            }//from   ww w  .j  a v  a  2 s  .  c  o  m
        }

        _validatorTagsMap.clear();
    }
}