public Void visitMethodDeclaration( MethodDeclaration node, SourceIndex index )
{
MethodDefinition def = node.getUserData( Keys.METHOD_DEFINITION );
ClassEntry classEntry = new ClassEntry( def.getDeclaringType().getInternalName() );
BehaviorEntry behaviorEntry = BehaviorEntryFactory.create( classEntry, def.getName(), def.getSignature() );
AstNode tokenNode = node.getNameToken();
if( behaviorEntry instanceof ConstructorEntry )
{
ConstructorEntry constructorEntry = (ConstructorEntry)behaviorEntry;
if( constructorEntry.isStatic() )
{