--- title: PMD How to Add a New CPD Language short_title: Add a New CPD Language tags: [customizing] summary: How to Add a New CPD Language series: Customizing PMD weight: 8 last_updated: July 3, 2016 sidebar: mydoc_sidebar permalink: adding_new_cpd_language.html folder: mydoc --- {% include custom/series_customizing.html %} # How to Add a New Language to CPD If you wish CPD to parse a unsupported language, you can easily develop a new parser for CPD. All you need to is implements the following interface: * net.sourceforge.pmd.cpd.Language * net.sourceforge.pmd.cpd.Tokenizer Do not forget to the follow the proper naming convention, as the CPD parser factory use this convention: * Language Name + "Language" * Tokenizer Name + "Tokenizer" For instance, if you develop a python parser, you should have two classes named PythonLanguage and PythonTokenizer. To test your parser, just package it in a jar and add your jar to the classpath. {% include custom/series_customizing_previous.html %} {% include custom/series_customizing_next.html %} {% include links.html %}