mirror of
https://github.com/eclipse-cdt/cdt
synced 2025-04-23 22:52:11 +02:00
- renamed to reflect type of checker
This commit is contained in:
parent
f7b306a662
commit
e79f9bc741
2 changed files with 2 additions and 2 deletions
|
@ -6,7 +6,7 @@
|
||||||
id="org.eclipse.cdt.codan.core.internal.checkers">
|
id="org.eclipse.cdt.codan.core.internal.checkers">
|
||||||
|
|
||||||
<checker
|
<checker
|
||||||
class="org.eclipse.cdt.codan.examples.checkers.NamingConventionFunctionChecker"
|
class="org.eclipse.cdt.codan.examples.checkers.NamingConventionFunctionIIndexChecker"
|
||||||
id="org.eclipse.cdt.codan.examples.checkers.NamingConventionFunctionChecker"
|
id="org.eclipse.cdt.codan.examples.checkers.NamingConventionFunctionChecker"
|
||||||
name="NamingConventionFunctionChecker">
|
name="NamingConventionFunctionChecker">
|
||||||
<problem
|
<problem
|
||||||
|
|
|
@ -26,7 +26,7 @@ import org.eclipse.core.runtime.CoreException;
|
||||||
* @author Alena
|
* @author Alena
|
||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
public class NamingConventionFunctionChecker extends AbstractCIndexChecker
|
public class NamingConventionFunctionIIndexChecker extends AbstractCIndexChecker
|
||||||
implements ICheckerWithParameters {
|
implements ICheckerWithParameters {
|
||||||
private static final String DEFAULT_PATTERN = "^[a-z]"; // name starts with english lowercase letter //$NON-NLS-1$
|
private static final String DEFAULT_PATTERN = "^[a-z]"; // name starts with english lowercase letter //$NON-NLS-1$
|
||||||
public static final String PARAM_KEY = "pattern"; //$NON-NLS-1$
|
public static final String PARAM_KEY = "pattern"; //$NON-NLS-1$
|
Loading…
Add table
Reference in a new issue