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

gg.jte.html.policy.PreventSingleQuotedAttributes 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 PreventSingleQuotedAttributes 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() != '\"') {
            throw new HtmlPolicyException("HTML attribute values must be double quoted: " + htmlAttribute.getName());
        }
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy