/external/javaparser/javaparser-core/src/main/java/com/github/javaparser/ast/type/ |
ReferenceType.java | 3 * Copyright (C) 2011, 2013-2016 The JavaParser Team. 5 * This file is part of JavaParser. 7 * JavaParser can be used either under the terms of 16 * JavaParser is distributed in the hope that it will be useful, 21 package com.github.javaparser.ast.type; 23 import com.github.javaparser.TokenRange; 24 import com.github.javaparser.ast.AllFieldsConstructor; 25 import com.github.javaparser.ast.Node; 26 import com.github.javaparser.ast.NodeList; 27 import com.github.javaparser.ast.expr.AnnotationExpr [all...] |
/external/javaparser/javaparser-core-generators/src/main/java/com/github/javaparser/generator/core/visitor/ |
GenericListVisitorAdapterGenerator.java | 1 package com.github.javaparser.generator.core.visitor; 3 import com.github.javaparser.ast.CompilationUnit; 4 import com.github.javaparser.ast.body.MethodDeclaration; 5 import com.github.javaparser.ast.stmt.BlockStmt; 6 import com.github.javaparser.generator.VisitorGenerator; 7 import com.github.javaparser.metamodel.BaseNodeMetaModel; 8 import com.github.javaparser.metamodel.PropertyMetaModel; 9 import com.github.javaparser.utils.SourceRoot; 15 import static com.github.javaparser.utils.CodeGenerationUtils.f; 18 * Generates JavaParser's GenericListVisitorAdapter [all...] |
/external/javaparser/javaparser-metamodel-generator/src/main/java/com/github/javaparser/generator/metamodel/ |
InitializeConstructorParametersStatementsGenerator.java | 1 package com.github.javaparser.generator.metamodel; 3 import com.github.javaparser.ast.AllFieldsConstructor; 4 import com.github.javaparser.ast.Node; 5 import com.github.javaparser.ast.NodeList; 6 import com.github.javaparser.ast.stmt.Statement; 12 import static com.github.javaparser.JavaParser.parseStatement; 13 import static com.github.javaparser.generator.metamodel.MetaModelGenerator.nodeMetaModelFieldName; 14 import static com.github.javaparser.generator.metamodel.MetaModelGenerator.propertyMetaModelFieldName; 15 import static com.github.javaparser.utils.CodeGenerationUtils.f [all...] |
/external/javaparser/javaparser-symbol-solver-testing/src/test/resources/issue113/com/foo/ |
Widget.java | 9 import com.github.javaparser.JavaParser; 10 import com.github.javaparser.ParseException; 11 import com.github.javaparser.ast.CompilationUnit; 12 import com.github.javaparser.ast.body.MethodDeclaration; 13 import com.github.javaparser.ast.expr.MethodCallExpr; 14 import com.github.javaparser.symbolsolver.javaparsermodel.JavaParserFacade; 15 import com.github.javaparser.symbolsolver.resolution.typesolvers.CombinedTypeSolver; 16 import com.github.javaparser.symbolsolver.resolution.typesolvers.JavaParserTypeSolver; 17 import com.github.javaparser.symbolsolver.resolution.typesolvers.ReflectionTypeSolver [all...] |
/external/javaparser/javaparser-testing/src/test/java/com/github/javaparser/printer/lexicalpreservation/transformations/ast/ |
ArrayCreationLevelTransformationsTest.java | 3 * Copyright (C) 2011, 2013-2016 The JavaParser Team. 5 * This file is part of JavaParser. 7 * JavaParser can be used either under the terms of 16 * JavaParser is distributed in the hope that it will be useful, 22 package com.github.javaparser.printer.lexicalpreservation.transformations.ast; 24 import com.github.javaparser.ast.ArrayCreationLevel; 25 import com.github.javaparser.ast.NodeList; 26 import com.github.javaparser.ast.expr.ArrayCreationExpr; 27 import com.github.javaparser.ast.expr.IntegerLiteralExpr; 28 import com.github.javaparser.ast.expr.Name [all...] |
/external/javaparser/javaparser-core/src/main/java/com/github/javaparser/ast/body/ |
AnnotationMemberDeclaration.java | 3 * Copyright (C) 2011, 2013-2016 The JavaParser Team. 5 * This file is part of JavaParser. 7 * JavaParser can be used either under the terms of 16 * JavaParser is distributed in the hope that it will be useful, 21 package com.github.javaparser.ast.body; 23 import com.github.javaparser.TokenRange; 24 import com.github.javaparser.ast.AllFieldsConstructor; 25 import com.github.javaparser.ast.Modifier; 26 import com.github.javaparser.ast.Node; 27 import com.github.javaparser.ast.NodeList [all...] |
/external/javaparser/javaparser-core/src/main/java/com/github/javaparser/ast/observer/ |
AstObserver.java | 3 * Copyright (C) 2011, 2013-2016 The JavaParser Team. 5 * This file is part of JavaParser. 7 * JavaParser can be used either under the terms of 16 * JavaParser is distributed in the hope that it will be useful, 22 package com.github.javaparser.ast.observer; 24 import com.github.javaparser.ast.Node; 25 import com.github.javaparser.ast.NodeList;
|
AstObserverAdapter.java | 3 * Copyright (C) 2011, 2013-2016 The JavaParser Team. 5 * This file is part of JavaParser. 7 * JavaParser can be used either under the terms of 16 * JavaParser is distributed in the hope that it will be useful, 22 package com.github.javaparser.ast.observer; 24 import com.github.javaparser.ast.Node; 25 import com.github.javaparser.ast.NodeList;
|
/external/javaparser/javaparser-core/src/main/java/com/github/javaparser/ast/stmt/ |
LocalClassDeclarationStmt.java | 3 * Copyright (C) 2011, 2013-2016 The JavaParser Team. 5 * This file is part of JavaParser. 7 * JavaParser can be used either under the terms of 16 * JavaParser is distributed in the hope that it will be useful, 21 package com.github.javaparser.ast.stmt; 23 import com.github.javaparser.ast.AllFieldsConstructor; 24 import com.github.javaparser.ast.body.ClassOrInterfaceDeclaration; 25 import com.github.javaparser.ast.observer.ObservableProperty; 26 import com.github.javaparser.ast.visitor.GenericVisitor; 27 import com.github.javaparser.ast.visitor.VoidVisitor [all...] |
/external/javaparser/javaparser-core/src/main/java/com/github/javaparser/ast/validator/ |
Java1_1Validator.java | 1 package com.github.javaparser.ast.validator; 3 import com.github.javaparser.ast.body.ClassOrInterfaceDeclaration; 4 import com.github.javaparser.ast.stmt.LocalClassDeclarationStmt;
|
Java8Validator.java | 1 package com.github.javaparser.ast.validator; 3 import com.github.javaparser.ast.body.ClassOrInterfaceDeclaration; 4 import com.github.javaparser.ast.validator.chunks.ModifierValidator;
|
TypedValidator.java | 1 package com.github.javaparser.ast.validator; 3 import com.github.javaparser.ParseResult; 4 import com.github.javaparser.ast.Node;
|
/external/javaparser/javaparser-core/src/main/java/com/github/javaparser/metamodel/ |
AnnotationExprMetaModel.java | 1 package com.github.javaparser.metamodel; 4 import com.github.javaparser.ast.Node; 9 super(superBaseNodeMetaModel, com.github.javaparser.ast.expr.AnnotationExpr.class, "AnnotationExpr", "com.github.javaparser.ast.expr", true, false);
|
BodyDeclarationMetaModel.java | 1 package com.github.javaparser.metamodel; 4 import com.github.javaparser.ast.Node; 9 super(superBaseNodeMetaModel, com.github.javaparser.ast.body.BodyDeclaration.class, "BodyDeclaration", "com.github.javaparser.ast.body", true, true);
|
CallableDeclarationMetaModel.java | 1 package com.github.javaparser.metamodel; 4 import com.github.javaparser.ast.Node; 9 super(superBaseNodeMetaModel, com.github.javaparser.ast.body.CallableDeclaration.class, "CallableDeclaration", "com.github.javaparser.ast.body", true, true);
|
CommentMetaModel.java | 1 package com.github.javaparser.metamodel; 4 import com.github.javaparser.ast.Node; 9 super(superBaseNodeMetaModel, com.github.javaparser.ast.comments.Comment.class, "Comment", "com.github.javaparser.ast.comments", true, false);
|
ExpressionMetaModel.java | 1 package com.github.javaparser.metamodel; 4 import com.github.javaparser.ast.Node; 9 super(superBaseNodeMetaModel, com.github.javaparser.ast.expr.Expression.class, "Expression", "com.github.javaparser.ast.expr", true, false);
|
LiteralExprMetaModel.java | 1 package com.github.javaparser.metamodel; 4 import com.github.javaparser.ast.Node; 9 super(superBaseNodeMetaModel, com.github.javaparser.ast.expr.LiteralExpr.class, "LiteralExpr", "com.github.javaparser.ast.expr", true, false);
|
LiteralStringValueExprMetaModel.java | 1 package com.github.javaparser.metamodel; 4 import com.github.javaparser.ast.Node; 9 super(superBaseNodeMetaModel, com.github.javaparser.ast.expr.LiteralStringValueExpr.class, "LiteralStringValueExpr", "com.github.javaparser.ast.expr", true, false);
|
ModuleStmtMetaModel.java | 1 package com.github.javaparser.metamodel; 4 import com.github.javaparser.ast.Node; 9 super(superBaseNodeMetaModel, com.github.javaparser.ast.modules.ModuleStmt.class, "ModuleStmt", "com.github.javaparser.ast.modules", true, false);
|
NodeMetaModel.java | 1 package com.github.javaparser.metamodel; 4 import com.github.javaparser.ast.Node; 9 super(superBaseNodeMetaModel, com.github.javaparser.ast.Node.class, "Node", "com.github.javaparser.ast", true, false);
|
ReferenceTypeMetaModel.java | 1 package com.github.javaparser.metamodel; 4 import com.github.javaparser.ast.Node; 9 super(superBaseNodeMetaModel, com.github.javaparser.ast.type.ReferenceType.class, "ReferenceType", "com.github.javaparser.ast.type", true, false);
|
StatementMetaModel.java | 1 package com.github.javaparser.metamodel; 4 import com.github.javaparser.ast.Node; 9 super(superBaseNodeMetaModel, com.github.javaparser.ast.stmt.Statement.class, "Statement", "com.github.javaparser.ast.stmt", true, false);
|
TypeDeclarationMetaModel.java | 1 package com.github.javaparser.metamodel; 4 import com.github.javaparser.ast.Node; 9 super(superBaseNodeMetaModel, com.github.javaparser.ast.body.TypeDeclaration.class, "TypeDeclaration", "com.github.javaparser.ast.body", true, true);
|
TypeMetaModel.java | 1 package com.github.javaparser.metamodel; 4 import com.github.javaparser.ast.Node; 9 super(superBaseNodeMetaModel, com.github.javaparser.ast.type.Type.class, "Type", "com.github.javaparser.ast.type", true, false);
|