本文整理汇总了Java中japa.parser.ast.body.Parameter.accept方法的典型用法代码示例。如果您正苦于以下问题:Java Parameter.accept方法的具体用法?Java Parameter.accept怎么用?Java Parameter.accept使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类japa.parser.ast.body.Parameter
的用法示例。
在下文中一共展示了Parameter.accept方法的7个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。
示例1: visit
import japa.parser.ast.body.Parameter; //导入方法依赖的package包/类
@Override
public void visit(CatchClause n, Object arg)
{ int line = n.getBeginLine();
Parameter e = n.getExcept();
if(!IGNORED_METHODS.contains(currentMethod))
{ Type t = e.getType();
if(t instanceof ReferenceType)
{ Type t2 = ((ReferenceType)t).getType();
if(t2 instanceof ClassOrInterfaceType)
{ String exceptionName = ((ClassOrInterfaceType)t2).getName();
if(FORBIDDEN_EXCEPTIONS.contains(exceptionName))
{ printErr("Erreur ligne "+line+" : le catch("+exceptionName+") masque l'appel à "+CHECK_INTERRUPTION_METHOD+"()");
errorCount++;
}
}
else
{ System.err.print(">>11111111111 problème : exception non conforme ("+t2.getClass()+")");
}
}
else
{ System.err.print(">>222222222 problème : exception non conforme ("+t.getClass()+")");
}
}
e.accept(this, arg);
n.getCatchBlock().accept(this, arg);
}
示例2: visit
import japa.parser.ast.body.Parameter; //导入方法依赖的package包/类
public void visit(ConstructorDeclaration n, A arg) {
if (n.getJavaDoc() != null) {
n.getJavaDoc().accept(this, arg);
}
if (n.getAnnotations() != null) {
for (AnnotationExpr a : n.getAnnotations()) {
a.accept(this, arg);
}
}
if (n.getTypeParameters() != null) {
for (TypeParameter t : n.getTypeParameters()) {
t.accept(this, arg);
}
}
if (n.getParameters() != null) {
for (Parameter p : n.getParameters()) {
p.accept(this, arg);
}
}
if (n.getThrows() != null) {
for (NameExpr name : n.getThrows()) {
name.accept(this, arg);
}
}
n.getBlock().accept(this, arg);
}
示例3: visit
import japa.parser.ast.body.Parameter; //导入方法依赖的package包/类
@Override
public void visit(CatchClause n, Object arg)
{ int line = n.getBeginLine();
Parameter e = n.getExcept();
if(!IGNORED_METHODS.contains(currentMethod))
{ Type t = e.getType();
if(t instanceof ReferenceType)
{ Type t2 = ((ReferenceType)t).getType();
if(t2 instanceof ClassOrInterfaceType)
{ String exceptionName = ((ClassOrInterfaceType)t2).getName();
if(FORBIDDEN_EXCEPTIONS.contains(exceptionName))
{ for(int i=0;i<indentLevel;i++)
System.out.print(">>");
System.out.println("Erreur ligne "+line+" : le catch("+exceptionName+") masque l'appel à "+CHECK_INTERRUPTION_METHOD+"()");
errorCount++;
// à compléter par la création d'un commentaire dans le code source
}
}
else
{ System.out.print(">>11111111111 problème : exception non conforme ("+t2.getClass()+")");
}
}
else
{ System.out.print(">>222222222 problème : exception non conforme ("+t.getClass()+")");
}
}
e.accept(this, arg);
n.getCatchBlock().accept(this, arg);
}
示例4: visit
import japa.parser.ast.body.Parameter; //导入方法依赖的package包/类
@Override
public void visit(CatchClause n, Object arg)
{ int line = n.getBeginLine();
Parameter e = n.getExcept();
if(!IGNORED_METHODS.contains(currentMethod))
{ Type t = e.getType();
if(t instanceof ReferenceType)
{ Type t2 = ((ReferenceType)t).getType();
if(t2 instanceof ClassOrInterfaceType)
{ String exceptionName = ((ClassOrInterfaceType)t2).getName();
if(FORBIDDEN_EXCEPTIONS.contains(exceptionName))
{ printErr("Erreur ligne "+line+" : le catch("+exceptionName+") masque l'appel à "+CHECK_INTERRUPTION_METHOD+"()");
errorCount++;
//
}
}
else
{ System.err.print(">>11111111111 problème : exception non conforme ("+t2.getClass()+")");
}
}
else
{ System.err.print(">>222222222 problème : exception non conforme ("+t.getClass()+")");
}
}
e.accept(this, arg);
n.getCatchBlock().accept(this, arg);
}
示例5: visit
import japa.parser.ast.body.Parameter; //导入方法依赖的package包/类
@Override
public void visit(CatchClause n, Object arg)
{ int line = n.getBeginLine();
Parameter e = n.getExcept();
if(!IGNORED_METHODS.contains(currentMethod))
{ Type t = e.getType();
if(t instanceof ReferenceType)
{ Type t2 = ((ReferenceType)t).getType();
if(t2 instanceof ClassOrInterfaceType)
{ String exceptionName = ((ClassOrInterfaceType)t2).getName();
if(FORBIDDEN_EXCEPTIONS.contains(exceptionName))
{ for(int i=0;i<indentLevel;i++)
System.out.print(">>");
System.out.println("Erreur ligne "+line+" : le catch("+exceptionName+") masque l'appel à "+CHECK_INTERRUPTION_METHOD+"()");
errorCount++;
}
}
else
{ System.out.print(">>11111111111 problème : exception non conforme ("+t2.getClass()+")");
}
}
else
{ System.out.print(">>222222222 problème : exception non conforme ("+t.getClass()+")");
}
}
e.accept(this, arg);
n.getCatchBlock().accept(this, arg);
}
示例6: visit
import japa.parser.ast.body.Parameter; //导入方法依赖的package包/类
public R visit(ConstructorDeclaration n, A arg) {
if (n.getJavaDoc() != null) {
n.getJavaDoc().accept(this, arg);
}
if (n.getAnnotations() != null) {
for (AnnotationExpr a : n.getAnnotations()) {
a.accept(this, arg);
}
}
if (n.getTypeParameters() != null) {
for (TypeParameter t : n.getTypeParameters()) {
t.accept(this, arg);
}
}
if (n.getParameters() != null) {
for (Parameter p : n.getParameters()) {
p.accept(this, arg);
}
}
if (n.getThrows() != null) {
for (NameExpr name : n.getThrows()) {
name.accept(this, arg);
}
}
n.getBlock().accept(this, arg);
return null;
}
示例7: visit
import japa.parser.ast.body.Parameter; //导入方法依赖的package包/类
public void visit(ConstructorDeclaration n, Object arg) {
printJavadoc(n.getJavaDoc(), arg);
printMemberAnnotations(n.getAnnotations(), arg);
printModifiers(n.getModifiers());
printTypeParameters(n.getTypeParameters(), arg);
if (n.getTypeParameters() != null) {
printer.print(" ");
}
printer.print(n.getName());
printer.print("(");
if (n.getParameters() != null) {
for (Iterator<Parameter> i = n.getParameters().iterator(); i.hasNext();) {
Parameter p = i.next();
p.accept(this, arg);
if (i.hasNext()) {
printer.print(", ");
}
}
}
printer.print(")");
if (n.getThrows() != null) {
printer.print(" throws ");
for (Iterator<NameExpr> i = n.getThrows().iterator(); i.hasNext();) {
NameExpr name = i.next();
name.accept(this, arg);
if (i.hasNext()) {
printer.print(", ");
}
}
}
printer.print(" ");
n.getBlock().accept(this, arg);
}