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

net.sourceforge.pmd.lang.swift.SwiftLanguageModule Maven / Gradle / Ivy

There is a newer version: 7.13.0
Show newest version
/**
 * BSD-style license; for more info see http://pmd.sourceforge.net/license.html
 */
package net.sourceforge.pmd.lang.swift;

import net.sourceforge.pmd.lang.BaseLanguageModule;

/**
 * Language Module for Swift
 */
public class SwiftLanguageModule extends BaseLanguageModule {

    /** The name. */
    public static final String NAME = "Swift";
    /** The terse name. */
    public static final String TERSE_NAME = "swift";

    /**
     * Create a new instance of Swift Language Module.
     */
    public SwiftLanguageModule() {
        super(NAME, null, TERSE_NAME, null, "swift");
        addVersion("", null, true);
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy