
net.sourceforge.pmd.lang.wsdl.WsdlLanguageModule Maven / Gradle / Ivy
/**
* BSD-style license; for more info see http://pmd.sourceforge.net/license.html
*/
package net.sourceforge.pmd.lang.wsdl;
import net.sourceforge.pmd.lang.BaseLanguageModule;
import net.sourceforge.pmd.lang.xml.XmlHandler;
/**
* Created by bernardo-macedo on 24.06.15.
*/
public class WsdlLanguageModule extends BaseLanguageModule {
public static final String NAME = "WSDL";
public static final String TERSE_NAME = "wsdl";
public WsdlLanguageModule() {
super(NAME, null, TERSE_NAME, "wsdl");
addVersion("", new XmlHandler(), true);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy