Skip to content

Commit

Permalink
working on getAllInterfaces
Browse files Browse the repository at this point in the history
  • Loading branch information
ftomassetti committed Oct 15, 2016
1 parent 4949e6d commit 4b4a14b
Show file tree
Hide file tree
Showing 97 changed files with 163 additions and 4 deletions.
Expand Up @@ -130,11 +130,53 @@ public void testGetInterfacesWithParameters() {
} }


@Test @Test
public void testGetAllInterfaces() { public void testGetAllInterfacesWithoutParameters() {
JavaParserClassDeclaration compilationUnit = (JavaParserClassDeclaration) typeSolver.solveType("com.github.javaparser.ast.CompilationUnit"); JavaParserClassDeclaration compilationUnit = (JavaParserClassDeclaration) typeSolver.solveType("com.github.javaparser.ast.CompilationUnit");
assertEquals(ImmutableSet.of(), compilationUnit.getAllInterfaces().stream().map(i -> i.getQualifiedName()).collect(Collectors.toSet())); assertEquals(ImmutableSet.of("java.lang.Cloneable"), compilationUnit.getAllInterfaces().stream().map(i -> i.getQualifiedName()).collect(Collectors.toSet()));


JavaParserClassDeclaration coid = (JavaParserClassDeclaration) typeSolver.solveType("com.github.javaparser.ast.body.ClassOrInterfaceDeclaration"); JavaParserClassDeclaration coid = (JavaParserClassDeclaration) typeSolver.solveType("com.github.javaparser.ast.body.ClassOrInterfaceDeclaration");
assertEquals(ImmutableSet.of("com.github.javaparser.ast.DocumentableNode"), coid.getAllInterfaces().stream().map(i -> i.getQualifiedName()).collect(Collectors.toSet())); assertEquals(ImmutableSet.of("java.lang.Cloneable", "com.github.javaparser.ast.NamedNode", "com.github.javaparser.ast.body.AnnotableNode", "com.github.javaparser.ast.DocumentableNode"), coid.getAllInterfaces().stream().map(i -> i.getQualifiedName()).collect(Collectors.toSet()));
}

@Test
public void testGetAllInterfacesWithParameters() {
JavaParserClassDeclaration constructorDeclaration = (JavaParserClassDeclaration) typeSolverNewCode.solveType("com.github.javaparser.ast.body.ConstructorDeclaration");
assertEquals(9, constructorDeclaration.getAllInterfaces().size());

me.tomassetti.symbolsolver.model.usages.typesystem.ReferenceType interfaze = null;

interfaze = constructorDeclaration.getAllInterfaces().get(0);
assertEquals("com.github.javaparser.ast.nodeTypes.NodeWithJavaDoc", interfaze.getQualifiedName());
assertEquals("com.github.javaparser.ast.body.ConstructorDeclaration", interfaze.typeParametersMap().getValueBySignature("com.github.javaparser.ast.nodeTypes.NodeWithJavaDoc.T").get().asReferenceType().getQualifiedName());

interfaze = constructorDeclaration.getAllInterfaces().get(1);
assertEquals("com.github.javaparser.ast.nodeTypes.NodeWithDeclaration", interfaze.getQualifiedName());

interfaze = constructorDeclaration.getAllInterfaces().get(2);
assertEquals("com.github.javaparser.ast.nodeTypes.NodeWithName", interfaze.getQualifiedName());
assertEquals("com.github.javaparser.ast.body.ConstructorDeclaration", interfaze.typeParametersMap().getValueBySignature("com.github.javaparser.ast.nodeTypes.NodeWithName.T").get().asReferenceType().getQualifiedName());

interfaze = constructorDeclaration.getAllInterfaces().get(3);
assertEquals("com.github.javaparser.ast.nodeTypes.NodeWithModifiers", interfaze.getQualifiedName());
assertEquals("com.github.javaparser.ast.body.ConstructorDeclaration", interfaze.typeParametersMap().getValueBySignature("com.github.javaparser.ast.nodeTypes.NodeWithModifiers.T").get().asReferenceType().getQualifiedName());

interfaze = constructorDeclaration.getAllInterfaces().get(4);
assertEquals("com.github.javaparser.ast.nodeTypes.NodeWithParameters", interfaze.getQualifiedName());
assertEquals("com.github.javaparser.ast.body.ConstructorDeclaration", interfaze.typeParametersMap().getValueBySignature("com.github.javaparser.ast.nodeTypes.NodeWithParameters.T").get().asReferenceType().getQualifiedName());

interfaze = constructorDeclaration.getAllInterfaces().get(5);
assertEquals("com.github.javaparser.ast.nodeTypes.NodeWithThrowable", interfaze.getQualifiedName());
assertEquals("com.github.javaparser.ast.body.ConstructorDeclaration", interfaze.typeParametersMap().getValueBySignature("com.github.javaparser.ast.nodeTypes.NodeWithThrowable.T").get().asReferenceType().getQualifiedName());

interfaze = constructorDeclaration.getAllInterfaces().get(6);
assertEquals("com.github.javaparser.ast.nodeTypes.NodeWithBlockStmt", interfaze.getQualifiedName());
assertEquals("com.github.javaparser.ast.body.ConstructorDeclaration", interfaze.typeParametersMap().getValueBySignature("com.github.javaparser.ast.nodeTypes.NodeWithBlockStmt.T").get().asReferenceType().getQualifiedName());

interfaze = constructorDeclaration.getAllInterfaces().get(7);
assertEquals("java.lang.Cloneable", interfaze.getQualifiedName());

interfaze = constructorDeclaration.getAllInterfaces().get(8);
assertEquals("com.github.javaparser.ast.nodeTypes.NodeWithAnnotations", interfaze.getQualifiedName());
assertEquals("com.github.javaparser.ast.body.ConstructorDeclaration", interfaze.typeParametersMap().getValueBySignature("com.github.javaparser.ast.nodeTypes.NodeWithAnnotations.T").get().asReferenceType().getQualifiedName());
} }
} }
Expand Up @@ -63,6 +63,6 @@ public void testGetAllInterfaces() {
assertEquals(ImmutableSet.of(), compilationUnit.getAllInterfaces().stream().map(i -> i.getQualifiedName()).collect(Collectors.toSet())); assertEquals(ImmutableSet.of(), compilationUnit.getAllInterfaces().stream().map(i -> i.getQualifiedName()).collect(Collectors.toSet()));


JavassistClassDeclaration coid = (JavassistClassDeclaration) typeSolver.solveType("com.github.javaparser.ast.body.ClassOrInterfaceDeclaration"); JavassistClassDeclaration coid = (JavassistClassDeclaration) typeSolver.solveType("com.github.javaparser.ast.body.ClassOrInterfaceDeclaration");
assertEquals(ImmutableSet.of("com.github.javaparser.ast.DocumentableNode"), coid.getAllInterfaces().stream().map(i -> i.getQualifiedName()).collect(Collectors.toSet())); assertEquals(ImmutableSet.of("com.github.javaparser.ast.NamedNode", "com.github.javaparser.ast.body.AnnotableNode", "com.github.javaparser.ast.DocumentableNode"), coid.getAllInterfaces().stream().map(i -> i.getQualifiedName()).collect(Collectors.toSet()));
} }
} }
Expand Up @@ -2,6 +2,7 @@
[ Class com.github.javaparser.ast.CompilationUnit ] [ Class com.github.javaparser.ast.CompilationUnit ]
superclass: com.github.javaparser.ast.Node superclass: com.github.javaparser.ast.Node
superclass: java.lang.Object superclass: java.lang.Object
interface: java.lang.Cloneable
Line 63) setPackage(pakage) ==> void Line 63) setPackage(pakage) ==> void
Line 64) setImports(imports) ==> void Line 64) setImports(imports) ==> void
Line 65) setTypes(types) ==> void Line 65) setTypes(types) ==> void
Expand Down
Expand Up @@ -2,6 +2,7 @@
[ Class com.github.javaparser.ast.ImportDeclaration ] [ Class com.github.javaparser.ast.ImportDeclaration ]
superclass: com.github.javaparser.ast.Node superclass: com.github.javaparser.ast.Node
superclass: java.lang.Object superclass: java.lang.Object
interface: java.lang.Cloneable
Line 53) setAsterisk(isAsterisk) ==> void Line 53) setAsterisk(isAsterisk) ==> void
Line 54) setName(name) ==> void Line 54) setName(name) ==> void
Line 55) setStatic(isStatic) ==> void Line 55) setStatic(isStatic) ==> void
Expand Down
Expand Up @@ -2,6 +2,7 @@
[ Class com.github.javaparser.ast.PackageDeclaration ] [ Class com.github.javaparser.ast.PackageDeclaration ]
superclass: com.github.javaparser.ast.Node superclass: com.github.javaparser.ast.Node
superclass: java.lang.Object superclass: java.lang.Object
interface: java.lang.Cloneable
Line 54) setName(name) ==> void Line 54) setName(name) ==> void
Line 58) setAnnotations(annotations) ==> void Line 58) setAnnotations(annotations) ==> void
Line 59) setName(name) ==> void Line 59) setName(name) ==> void
Expand Down
Expand Up @@ -3,6 +3,7 @@
superclass: com.github.javaparser.ast.Node superclass: com.github.javaparser.ast.Node
superclass: java.lang.Object superclass: java.lang.Object
interface: com.github.javaparser.ast.NamedNode interface: com.github.javaparser.ast.NamedNode
interface: java.lang.Cloneable
Line 55) setName(name) ==> void Line 55) setName(name) ==> void
Line 56) setTypeBound(typeBound) ==> void Line 56) setTypeBound(typeBound) ==> void
Line 61) beginLine ==> int Line 61) beginLine ==> int
Expand Down
Expand Up @@ -5,6 +5,9 @@
superclass: com.github.javaparser.ast.Node superclass: com.github.javaparser.ast.Node
superclass: java.lang.Object superclass: java.lang.Object
interface: com.github.javaparser.ast.DocumentableNode interface: com.github.javaparser.ast.DocumentableNode
interface: java.lang.Cloneable
interface: com.github.javaparser.ast.body.AnnotableNode
interface: com.github.javaparser.ast.NamedNode
Line 41) modifiers ==> int Line 41) modifiers ==> int
Line 41) name ==> java.lang.String Line 41) name ==> java.lang.String
Line 45) annotations ==> java.util.List<com.github.javaparser.ast.expr.AnnotationExpr> Line 45) annotations ==> java.util.List<com.github.javaparser.ast.expr.AnnotationExpr>
Expand Down
Expand Up @@ -5,6 +5,8 @@
superclass: java.lang.Object superclass: java.lang.Object
interface: com.github.javaparser.ast.DocumentableNode interface: com.github.javaparser.ast.DocumentableNode
interface: com.github.javaparser.ast.NamedNode interface: com.github.javaparser.ast.NamedNode
interface: java.lang.Cloneable
interface: com.github.javaparser.ast.body.AnnotableNode
Line 52) setModifiers(modifiers) ==> void Line 52) setModifiers(modifiers) ==> void
Line 53) setType(type) ==> void Line 53) setType(type) ==> void
Line 54) setName(name) ==> void Line 54) setName(name) ==> void
Expand Down
Expand Up @@ -2,6 +2,7 @@
[ Class com.github.javaparser.ast.body.BaseParameter ] [ Class com.github.javaparser.ast.body.BaseParameter ]
superclass: com.github.javaparser.ast.Node superclass: com.github.javaparser.ast.Node
superclass: java.lang.Object superclass: java.lang.Object
interface: java.lang.Cloneable
Line 40) setId(id) ==> void Line 40) setId(id) ==> void
Line 44) setModifiers(modifiers) ==> void Line 44) setModifiers(modifiers) ==> void
Line 45) setId(id) ==> void Line 45) setId(id) ==> void
Expand Down
Expand Up @@ -3,6 +3,7 @@
superclass: com.github.javaparser.ast.Node superclass: com.github.javaparser.ast.Node
superclass: java.lang.Object superclass: java.lang.Object
interface: com.github.javaparser.ast.body.AnnotableNode interface: com.github.javaparser.ast.body.AnnotableNode
interface: java.lang.Cloneable
Line 41) setAnnotations(annotations) ==> void Line 41) setAnnotations(annotations) ==> void
Line 45) beginLine ==> int Line 45) beginLine ==> int
Line 45) beginColumn ==> int Line 45) beginColumn ==> int
Expand Down
Expand Up @@ -5,6 +5,9 @@
superclass: com.github.javaparser.ast.Node superclass: com.github.javaparser.ast.Node
superclass: java.lang.Object superclass: java.lang.Object
interface: com.github.javaparser.ast.DocumentableNode interface: com.github.javaparser.ast.DocumentableNode
interface: java.lang.Cloneable
interface: com.github.javaparser.ast.body.AnnotableNode
interface: com.github.javaparser.ast.NamedNode
Line 52) modifiers ==> int Line 52) modifiers ==> int
Line 52) name ==> java.lang.String Line 52) name ==> java.lang.String
Line 53) setInterface(isInterface) ==> void Line 53) setInterface(isInterface) ==> void
Expand Down
Expand Up @@ -6,6 +6,8 @@
interface: com.github.javaparser.ast.DocumentableNode interface: com.github.javaparser.ast.DocumentableNode
interface: com.github.javaparser.ast.body.WithDeclaration interface: com.github.javaparser.ast.body.WithDeclaration
interface: com.github.javaparser.ast.NamedNode interface: com.github.javaparser.ast.NamedNode
interface: java.lang.Cloneable
interface: com.github.javaparser.ast.body.AnnotableNode
Line 60) setModifiers(modifiers) ==> void Line 60) setModifiers(modifiers) ==> void
Line 61) setName(name) ==> void Line 61) setName(name) ==> void
Line 66) annotations ==> java.util.List<com.github.javaparser.ast.expr.AnnotationExpr> Line 66) annotations ==> java.util.List<com.github.javaparser.ast.expr.AnnotationExpr>
Expand Down
Expand Up @@ -4,6 +4,8 @@
superclass: com.github.javaparser.ast.Node superclass: com.github.javaparser.ast.Node
superclass: java.lang.Object superclass: java.lang.Object
interface: com.github.javaparser.ast.DocumentableNode interface: com.github.javaparser.ast.DocumentableNode
interface: java.lang.Cloneable
interface: com.github.javaparser.ast.body.AnnotableNode
Line 35) null ==> null Line 35) null ==> null
Line 39) beginLine ==> int Line 39) beginLine ==> int
Line 39) beginColumn ==> int Line 39) beginColumn ==> int
Expand Down
Expand Up @@ -5,6 +5,9 @@
superclass: com.github.javaparser.ast.Node superclass: com.github.javaparser.ast.Node
superclass: java.lang.Object superclass: java.lang.Object
interface: com.github.javaparser.ast.DocumentableNode interface: com.github.javaparser.ast.DocumentableNode
interface: java.lang.Cloneable
interface: com.github.javaparser.ast.body.AnnotableNode
interface: com.github.javaparser.ast.NamedNode
Line 35) null ==> null Line 35) null ==> null
Line 35) 0 ==> int Line 35) 0 ==> int
Line 35) null ==> null Line 35) null ==> null
Expand Down
Expand Up @@ -5,6 +5,8 @@
superclass: java.lang.Object superclass: java.lang.Object
interface: com.github.javaparser.ast.DocumentableNode interface: com.github.javaparser.ast.DocumentableNode
interface: com.github.javaparser.ast.NamedNode interface: com.github.javaparser.ast.NamedNode
interface: java.lang.Cloneable
interface: com.github.javaparser.ast.body.AnnotableNode
Line 49) setName(name) ==> void Line 49) setName(name) ==> void
Line 53) annotations ==> java.util.List<com.github.javaparser.ast.expr.AnnotationExpr> Line 53) annotations ==> java.util.List<com.github.javaparser.ast.expr.AnnotationExpr>
Line 54) setName(name) ==> void Line 54) setName(name) ==> void
Expand Down
Expand Up @@ -5,6 +5,9 @@
superclass: com.github.javaparser.ast.Node superclass: com.github.javaparser.ast.Node
superclass: java.lang.Object superclass: java.lang.Object
interface: com.github.javaparser.ast.DocumentableNode interface: com.github.javaparser.ast.DocumentableNode
interface: java.lang.Cloneable
interface: com.github.javaparser.ast.body.AnnotableNode
interface: com.github.javaparser.ast.NamedNode
Line 46) modifiers ==> int Line 46) modifiers ==> int
Line 46) name ==> java.lang.String Line 46) name ==> java.lang.String
Line 50) annotations ==> java.util.List<com.github.javaparser.ast.expr.AnnotationExpr> Line 50) annotations ==> java.util.List<com.github.javaparser.ast.expr.AnnotationExpr>
Expand Down
Expand Up @@ -4,6 +4,8 @@
superclass: com.github.javaparser.ast.Node superclass: com.github.javaparser.ast.Node
superclass: java.lang.Object superclass: java.lang.Object
interface: com.github.javaparser.ast.DocumentableNode interface: com.github.javaparser.ast.DocumentableNode
interface: java.lang.Cloneable
interface: com.github.javaparser.ast.body.AnnotableNode
Line 49) setModifiers(modifiers) ==> void Line 49) setModifiers(modifiers) ==> void
Line 50) setType(type) ==> void Line 50) setType(type) ==> void
Line 51) List<VariableDeclarator> aux = new ArrayList<VariableDeclarator>() ==> java.util.List<com.github.javaparser.ast.body.VariableDeclarator> Line 51) List<VariableDeclarator> aux = new ArrayList<VariableDeclarator>() ==> java.util.List<com.github.javaparser.ast.body.VariableDeclarator>
Expand Down
Expand Up @@ -4,6 +4,8 @@
superclass: com.github.javaparser.ast.Node superclass: com.github.javaparser.ast.Node
superclass: java.lang.Object superclass: java.lang.Object
interface: com.github.javaparser.ast.DocumentableNode interface: com.github.javaparser.ast.DocumentableNode
interface: java.lang.Cloneable
interface: com.github.javaparser.ast.body.AnnotableNode
Line 43) null ==> null Line 43) null ==> null
Line 44) setStatic(isStatic) ==> void Line 44) setStatic(isStatic) ==> void
Line 45) setBlock(block) ==> void Line 45) setBlock(block) ==> void
Expand Down
Expand Up @@ -6,6 +6,8 @@
interface: com.github.javaparser.ast.DocumentableNode interface: com.github.javaparser.ast.DocumentableNode
interface: com.github.javaparser.ast.body.WithDeclaration interface: com.github.javaparser.ast.body.WithDeclaration
interface: com.github.javaparser.ast.NamedNode interface: com.github.javaparser.ast.NamedNode
interface: java.lang.Cloneable
interface: com.github.javaparser.ast.body.AnnotableNode
Line 60) false ==> boolean Line 60) false ==> boolean
Line 66) setModifiers(modifiers) ==> void Line 66) setModifiers(modifiers) ==> void
Line 67) setType(type) ==> void Line 67) setType(type) ==> void
Expand Down
Expand Up @@ -3,6 +3,7 @@
superclass: com.github.javaparser.ast.body.BaseParameter superclass: com.github.javaparser.ast.body.BaseParameter
superclass: com.github.javaparser.ast.Node superclass: com.github.javaparser.ast.Node
superclass: java.lang.Object superclass: java.lang.Object
interface: java.lang.Cloneable
Line 37) modifiers ==> int Line 37) modifiers ==> int
Line 37) annotations ==> java.util.List<com.github.javaparser.ast.expr.AnnotationExpr> Line 37) annotations ==> java.util.List<com.github.javaparser.ast.expr.AnnotationExpr>
Line 37) id ==> com.github.javaparser.ast.body.VariableDeclaratorId Line 37) id ==> com.github.javaparser.ast.body.VariableDeclaratorId
Expand Down
Expand Up @@ -3,6 +3,7 @@
superclass: com.github.javaparser.ast.body.BaseParameter superclass: com.github.javaparser.ast.body.BaseParameter
superclass: com.github.javaparser.ast.Node superclass: com.github.javaparser.ast.Node
superclass: java.lang.Object superclass: java.lang.Object
interface: java.lang.Cloneable
Line 43) id ==> com.github.javaparser.ast.body.VariableDeclaratorId Line 43) id ==> com.github.javaparser.ast.body.VariableDeclaratorId
Line 44) setType(type) ==> void Line 44) setType(type) ==> void
Line 48) modifiers ==> int Line 48) modifiers ==> int
Expand Down
Expand Up @@ -4,6 +4,8 @@
superclass: com.github.javaparser.ast.Node superclass: com.github.javaparser.ast.Node
superclass: java.lang.Object superclass: java.lang.Object
interface: com.github.javaparser.ast.NamedNode interface: com.github.javaparser.ast.NamedNode
interface: java.lang.Cloneable
interface: com.github.javaparser.ast.body.AnnotableNode
Line 45) setName(name) ==> void Line 45) setName(name) ==> void
Line 46) setModifiers(modifiers) ==> void Line 46) setModifiers(modifiers) ==> void
Line 52) annotations ==> java.util.List<com.github.javaparser.ast.expr.AnnotationExpr> Line 52) annotations ==> java.util.List<com.github.javaparser.ast.expr.AnnotationExpr>
Expand Down
Expand Up @@ -2,6 +2,7 @@
[ Class com.github.javaparser.ast.body.VariableDeclarator ] [ Class com.github.javaparser.ast.body.VariableDeclarator ]
superclass: com.github.javaparser.ast.Node superclass: com.github.javaparser.ast.Node
superclass: java.lang.Object superclass: java.lang.Object
interface: java.lang.Cloneable
Line 42) setId(id) ==> void Line 42) setId(id) ==> void
Line 46) setId(id) ==> void Line 46) setId(id) ==> void
Line 47) setInit(init) ==> void Line 47) setInit(init) ==> void
Expand Down
Expand Up @@ -3,6 +3,7 @@
superclass: com.github.javaparser.ast.Node superclass: com.github.javaparser.ast.Node
superclass: java.lang.Object superclass: java.lang.Object
interface: com.github.javaparser.ast.NamedNode interface: com.github.javaparser.ast.NamedNode
interface: java.lang.Cloneable
Line 42) setName(name) ==> void Line 42) setName(name) ==> void
Line 46) beginLine ==> int Line 46) beginLine ==> int
Line 46) beginColumn ==> int Line 46) beginColumn ==> int
Expand Down
Expand Up @@ -3,6 +3,7 @@
superclass: com.github.javaparser.ast.comments.Comment superclass: com.github.javaparser.ast.comments.Comment
superclass: com.github.javaparser.ast.Node superclass: com.github.javaparser.ast.Node
superclass: java.lang.Object superclass: java.lang.Object
interface: java.lang.Cloneable
Line 42) content ==> java.lang.String Line 42) content ==> java.lang.String
Line 46) beginLine ==> int Line 46) beginLine ==> int
Line 46) beginColumn ==> int Line 46) beginColumn ==> int
Expand Down
Expand Up @@ -2,6 +2,7 @@
[ Class com.github.javaparser.ast.comments.Comment ] [ Class com.github.javaparser.ast.comments.Comment ]
superclass: com.github.javaparser.ast.Node superclass: com.github.javaparser.ast.Node
superclass: java.lang.Object superclass: java.lang.Object
interface: java.lang.Cloneable
Line 43) this.content = content ==> java.lang.String Line 43) this.content = content ==> java.lang.String
Line 47) beginLine ==> int Line 47) beginLine ==> int
Line 47) beginColumn ==> int Line 47) beginColumn ==> int
Expand Down
Expand Up @@ -3,6 +3,7 @@
superclass: com.github.javaparser.ast.comments.Comment superclass: com.github.javaparser.ast.comments.Comment
superclass: com.github.javaparser.ast.Node superclass: com.github.javaparser.ast.Node
superclass: java.lang.Object superclass: java.lang.Object
interface: java.lang.Cloneable
Line 36) content ==> java.lang.String Line 36) content ==> java.lang.String
Line 40) beginLine ==> int Line 40) beginLine ==> int
Line 40) beginColumn ==> int Line 40) beginColumn ==> int
Expand Down
Expand Up @@ -3,6 +3,7 @@
superclass: com.github.javaparser.ast.comments.Comment superclass: com.github.javaparser.ast.comments.Comment
superclass: com.github.javaparser.ast.Node superclass: com.github.javaparser.ast.Node
superclass: java.lang.Object superclass: java.lang.Object
interface: java.lang.Cloneable
Line 41) content ==> java.lang.String Line 41) content ==> java.lang.String
Line 45) beginLine ==> int Line 45) beginLine ==> int
Line 45) beginColumn ==> int Line 45) beginColumn ==> int
Expand Down
Expand Up @@ -3,6 +3,7 @@
superclass: com.github.javaparser.ast.expr.Expression superclass: com.github.javaparser.ast.expr.Expression
superclass: com.github.javaparser.ast.Node superclass: com.github.javaparser.ast.Node
superclass: java.lang.Object superclass: java.lang.Object
interface: java.lang.Cloneable
Line 35) beginLine ==> int Line 35) beginLine ==> int
Line 35) beginColumn ==> int Line 35) beginColumn ==> int
Line 35) endLine ==> int Line 35) endLine ==> int
Expand Down
Expand Up @@ -3,6 +3,7 @@
superclass: com.github.javaparser.ast.expr.Expression superclass: com.github.javaparser.ast.expr.Expression
superclass: com.github.javaparser.ast.Node superclass: com.github.javaparser.ast.Node
superclass: java.lang.Object superclass: java.lang.Object
interface: java.lang.Cloneable
Line 40) setName(name) ==> void Line 40) setName(name) ==> void
Line 41) setIndex(index) ==> void Line 41) setIndex(index) ==> void
Line 45) beginLine ==> int Line 45) beginLine ==> int
Expand Down
Expand Up @@ -3,6 +3,7 @@
superclass: com.github.javaparser.ast.expr.Expression superclass: com.github.javaparser.ast.expr.Expression
superclass: com.github.javaparser.ast.Node superclass: com.github.javaparser.ast.Node
superclass: java.lang.Object superclass: java.lang.Object
interface: java.lang.Cloneable
Line 49) setType(type) ==> void Line 49) setType(type) ==> void
Line 50) setArrayCount(arrayCount) ==> void Line 50) setArrayCount(arrayCount) ==> void
Line 51) setInitializer(initializer) ==> void Line 51) setInitializer(initializer) ==> void
Expand Down
Expand Up @@ -3,6 +3,7 @@
superclass: com.github.javaparser.ast.expr.Expression superclass: com.github.javaparser.ast.expr.Expression
superclass: com.github.javaparser.ast.Node superclass: com.github.javaparser.ast.Node
superclass: java.lang.Object superclass: java.lang.Object
interface: java.lang.Cloneable
Line 40) setValues(values) ==> void Line 40) setValues(values) ==> void
Line 44) beginLine ==> int Line 44) beginLine ==> int
Line 44) beginColumn ==> int Line 44) beginColumn ==> int
Expand Down
Expand Up @@ -3,6 +3,7 @@
superclass: com.github.javaparser.ast.expr.Expression superclass: com.github.javaparser.ast.expr.Expression
superclass: com.github.javaparser.ast.Node superclass: com.github.javaparser.ast.Node
superclass: java.lang.Object superclass: java.lang.Object
interface: java.lang.Cloneable
Line 57) setTarget(target) ==> void Line 57) setTarget(target) ==> void
Line 58) setValue(value) ==> void Line 58) setValue(value) ==> void
Line 59) setOperator(op) ==> void Line 59) setOperator(op) ==> void
Expand Down
Expand Up @@ -3,6 +3,7 @@
superclass: com.github.javaparser.ast.expr.Expression superclass: com.github.javaparser.ast.expr.Expression
superclass: com.github.javaparser.ast.Node superclass: com.github.javaparser.ast.Node
superclass: java.lang.Object superclass: java.lang.Object
interface: java.lang.Cloneable
Line 64) setLeft(left) ==> void Line 64) setLeft(left) ==> void
Line 65) setRight(right) ==> void Line 65) setRight(right) ==> void
Line 66) setOperator(op) ==> void Line 66) setOperator(op) ==> void
Expand Down
Expand Up @@ -4,6 +4,7 @@
superclass: com.github.javaparser.ast.expr.Expression superclass: com.github.javaparser.ast.expr.Expression
superclass: com.github.javaparser.ast.Node superclass: com.github.javaparser.ast.Node
superclass: java.lang.Object superclass: java.lang.Object
interface: java.lang.Cloneable
Line 38) setValue(value) ==> void Line 38) setValue(value) ==> void
Line 42) beginLine ==> int Line 42) beginLine ==> int
Line 42) beginColumn ==> int Line 42) beginColumn ==> int
Expand Down
Expand Up @@ -3,6 +3,7 @@
superclass: com.github.javaparser.ast.expr.Expression superclass: com.github.javaparser.ast.expr.Expression
superclass: com.github.javaparser.ast.Node superclass: com.github.javaparser.ast.Node
superclass: java.lang.Object superclass: java.lang.Object
interface: java.lang.Cloneable
Line 41) setType(type) ==> void Line 41) setType(type) ==> void
Line 42) setExpr(expr) ==> void Line 42) setExpr(expr) ==> void
Line 46) beginLine ==> int Line 46) beginLine ==> int
Expand Down
Expand Up @@ -5,6 +5,7 @@
superclass: com.github.javaparser.ast.expr.Expression superclass: com.github.javaparser.ast.expr.Expression
superclass: com.github.javaparser.ast.Node superclass: com.github.javaparser.ast.Node
superclass: java.lang.Object superclass: java.lang.Object
interface: java.lang.Cloneable
Line 36) value ==> java.lang.String Line 36) value ==> java.lang.String
Line 40) beginLine ==> int Line 40) beginLine ==> int
Line 40) beginColumn ==> int Line 40) beginColumn ==> int
Expand Down
Expand Up @@ -3,6 +3,7 @@
superclass: com.github.javaparser.ast.expr.Expression superclass: com.github.javaparser.ast.expr.Expression
superclass: com.github.javaparser.ast.Node superclass: com.github.javaparser.ast.Node
superclass: java.lang.Object superclass: java.lang.Object
interface: java.lang.Cloneable
Line 39) setType(type) ==> void Line 39) setType(type) ==> void
Line 43) beginLine ==> int Line 43) beginLine ==> int
Line 43) beginColumn ==> int Line 43) beginColumn ==> int
Expand Down
Expand Up @@ -3,6 +3,7 @@
superclass: com.github.javaparser.ast.expr.Expression superclass: com.github.javaparser.ast.expr.Expression
superclass: com.github.javaparser.ast.Node superclass: com.github.javaparser.ast.Node
superclass: java.lang.Object superclass: java.lang.Object
interface: java.lang.Cloneable
Line 42) setCondition(condition) ==> void Line 42) setCondition(condition) ==> void
Line 43) setThenExpr(thenExpr) ==> void Line 43) setThenExpr(thenExpr) ==> void
Line 44) setElseExpr(elseExpr) ==> void Line 44) setElseExpr(elseExpr) ==> void
Expand Down
Expand Up @@ -5,6 +5,7 @@
superclass: com.github.javaparser.ast.expr.Expression superclass: com.github.javaparser.ast.expr.Expression
superclass: com.github.javaparser.ast.Node superclass: com.github.javaparser.ast.Node
superclass: java.lang.Object superclass: java.lang.Object
interface: java.lang.Cloneable
Line 36) value ==> java.lang.String Line 36) value ==> java.lang.String
Line 41) beginLine ==> int Line 41) beginLine ==> int
Line 41) beginColumn ==> int Line 41) beginColumn ==> int
Expand Down
Expand Up @@ -3,6 +3,7 @@
superclass: com.github.javaparser.ast.expr.Expression superclass: com.github.javaparser.ast.expr.Expression
superclass: com.github.javaparser.ast.Node superclass: com.github.javaparser.ast.Node
superclass: java.lang.Object superclass: java.lang.Object
interface: java.lang.Cloneable
Line 38) setInner(inner) ==> void Line 38) setInner(inner) ==> void
Line 43) beginLine ==> int Line 43) beginLine ==> int
Line 43) beginColumn ==> int Line 43) beginColumn ==> int
Expand Down

0 comments on commit 4b4a14b

Please sign in to comment.