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

net.sourceforge.pmd.lang.cs.CsLanguageModule Maven / Gradle / Ivy

/**
 * BSD-style license; for more info see http://pmd.sourceforge.net/license.html
 */

package net.sourceforge.pmd.lang.cs;

import net.sourceforge.pmd.lang.BaseLanguageModule;

/**
 * Language Module for C#
 *
 * @deprecated There is no full PMD support for c#.
 */
@Deprecated
public class CsLanguageModule extends BaseLanguageModule {

    /** The name. */
    public static final String NAME = "C#";
    /** The terse name. */
    public static final String TERSE_NAME = "cs";

    /**
     * Create a new instance of C# Language Module.
     */
    public CsLanguageModule() {
        super(NAME, null, TERSE_NAME, "cs");
        addVersion("", null, true);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy