MethodDeclaration[] methods= theTypeDecl.getMethods();
List<String> processedMethods= new ArrayList<String>();
for (int i= 0; i < methods.length; i++)
{
MethodDeclaration method= methods[i];
currentMethodDeclaration= method;
try
{
String normalizeExpression= normalizeExpression(Project.getSingleton().getSignature(method.getMethodBinding().toString()).relative());
if (!processedMethods.contains(normalizeExpression))
{
processedMethods.add(normalizeExpression);
method.visit(this);
}
else
System.out.println("duplicado!");
// System.out.println("llego!");
}