All Downloads are FREE. Search and download functionalities are using the official Maven repository.

gg.jte.html.policy.PreventUnquotedAttributes Maven / Gradle / Ivy

There is a newer version: 3.1.12
Show newest version
package gg.jte.html.policy;

import gg.jte.html.HtmlAttribute;
import gg.jte.html.HtmlPolicy;
import gg.jte.html.HtmlPolicyException;
import gg.jte.html.HtmlTag;

public class PreventUnquotedAttributes implements HtmlPolicy {

    @Override
    public void validateHtmlTag(HtmlTag htmlTag) throws HtmlPolicyException {
        // Unused
    }

    @Override
    public void validateHtmlAttribute(HtmlTag htmlTag, HtmlAttribute htmlAttribute) throws HtmlPolicyException {
        if (!htmlAttribute.isEmpty() && htmlAttribute.getQuotes() != '\"' && htmlAttribute.getQuotes() != '\'') {
            throw new HtmlPolicyException("Unquoted HTML attribute values are not allowed: " + htmlAttribute.getName());
        }
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy