TPTP 4.2.0 Platform Project
Public API Specification

org.eclipse.tptp.platform.analysis.codereview.cpp.rulefilter
Class FunctionCallNameRuleFilter

java.lang.Object
  extended byorg.eclipse.tptp.platform.analysis.codereview.cpp.AbstractRuleFilter
      extended byorg.eclipse.tptp.platform.analysis.codereview.cpp.rulefilter.FunctionCallNameRuleFilter
All Implemented Interfaces:
IRuleFilter

public class FunctionCallNameRuleFilter
extends AbstractRuleFilter


Constructor Summary
FunctionCallNameRuleFilter(java.lang.String[] functionNames, boolean inclusive)
          This class provides filtering by Function Call names
FunctionCallNameRuleFilter(java.lang.String functionName, boolean inclusive)
          This class provides filtering by Function Call names
 
Method Summary
 boolean satisfies(org.eclipse.cdt.core.dom.ast.IASTNode node)
          Determine if the node is satisfied by the specified filter rule
 
Methods inherited from class org.eclipse.tptp.platform.analysis.codereview.cpp.AbstractRuleFilter
isInclusive
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

FunctionCallNameRuleFilter

public FunctionCallNameRuleFilter(java.lang.String functionName,
                                  boolean inclusive)
This class provides filtering by Function Call names

Parameters:
functionName - The function name by which to filter
inclusive - True if filtering will include only nodes that match the filter criteria, false to exclude matching nodes

FunctionCallNameRuleFilter

public FunctionCallNameRuleFilter(java.lang.String[] functionNames,
                                  boolean inclusive)
This class provides filtering by Function Call names

Parameters:
functionNames - An array of function names on which to filter
inclusive - True if filtering will include only nodes that match the filter criteria, false to exclude matching nodes
Method Detail

satisfies

public boolean satisfies(org.eclipse.cdt.core.dom.ast.IASTNode node)
Determine if the node is satisfied by the specified filter rule

Specified by:
satisfies in interface IRuleFilter
Specified by:
satisfies in class AbstractRuleFilter
Parameters:
node - The ASTNode to test
Returns:
true if the node satisifes the filtering rule

TPTP 4.2.0 Platform Project
Public API Specification