Class MethodNameDeclaration
- java.lang.Object
-
- net.sourceforge.pmd.lang.symboltable.AbstractNameDeclaration
-
- net.sourceforge.pmd.lang.plsql.symboltable.MethodNameDeclaration
-
- All Implemented Interfaces:
net.sourceforge.pmd.lang.symboltable.NameDeclaration
public class MethodNameDeclaration extends net.sourceforge.pmd.lang.symboltable.AbstractNameDeclaration
-
-
Constructor Summary
Constructors Constructor Description MethodNameDeclaration(ASTMethodDeclarator node)
MethodNameDeclaration(ASTTriggerTimingPointSection node)
Treat a TimingPointSection within a Compound Trigger like a packaged FUNCTION or PROCEDURE.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description boolean
equals(Object o)
ASTMethodDeclarator
getMethodNameDeclaratorNode()
int
getParameterCount()
String
getParameterDisplaySignature()
int
hashCode()
boolean
isVarargs()
PL/SQL does not currently allow varargs outside the STANDARD package.String
toString()
-
-
-
Constructor Detail
-
MethodNameDeclaration
public MethodNameDeclaration(ASTMethodDeclarator node)
-
MethodNameDeclaration
public MethodNameDeclaration(ASTTriggerTimingPointSection node)
Treat a TimingPointSection within a Compound Trigger like a packaged FUNCTION or PROCEDURE. SRT- Parameters:
node
-
-
-
Method Detail
-
getParameterCount
public int getParameterCount()
-
isVarargs
public boolean isVarargs()
PL/SQL does not currently allow varargs outside the STANDARD package.- Returns:
- false
-
getMethodNameDeclaratorNode
public ASTMethodDeclarator getMethodNameDeclaratorNode()
-
getParameterDisplaySignature
public String getParameterDisplaySignature()
-
-