}
return builder.toString();
}
if(element instanceof classMethodDeclImpl){
classMethodDeclImpl e = ((classMethodDeclImpl)element);
builder = new StringBuilder(e.getName().getFunctionName());
formalParamListImpl params = (formalParamListImpl) e.getParams();
if(params != null){
EList<String> list = params.getParams();
Iterator<String> it = list.iterator();
builder.append("(");
while(it.hasNext()){