blob: 23c4cabf6d2ebfedbca0c46c048afc5eae7e4635 [file] [log] [blame]
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
* The ASF licenses this file to You under the Apache License, Version 2.0
* (the "License"); you may not use this file except in compliance with
* the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.apache.flex.pmd.rules.naming;
import net.sourceforge.pmd.lang.rule.properties.StringProperty;
import org.apache.flex.pmd.nodes.IFunction;
import org.apache.flex.pmd.parser.IParserNode;
import org.apache.flex.pmd.rules.core.AbstractAstFlexRule;
import org.apache.flex.pmd.rules.core.ViolationPriority;
public class IncorrectEventHandlerNameRule extends AbstractAstFlexRule {
public IncorrectEventHandlerNameRule() {
super();
definePropertyDescriptor(new StringProperty(
"prefix",
"prefix",
"on",
1.0f
));
definePropertyDescriptor(new StringProperty(
"suffix",
"suffix",
"",
1.0f
));
}
@Override
protected void findViolations(final IFunction function) {
String prefix = (String) getProperty(getPropertyDescriptor("prefix"));
String suffix = (String) getProperty(getPropertyDescriptor("suffix"));
if (function.isEventHandler()
&& !(function.getName().startsWith(prefix) && function.getName().endsWith(suffix))) {
final IParserNode name = getNameFromFunctionDeclaration(function.getInternalNode());
addViolation(name,
name.getStringValue(),
prefix,
suffix);
}
}
@Override
protected ViolationPriority getDefaultPriority() {
return ViolationPriority.LOW;
}
}