HomeSort by relevance Sort by last modified time
    Searched refs:javaparser (Results 351 - 375 of 1172) sorted by null

<<11121314151617181920>>

  /external/javaparser/javaparser-core-generators/src/main/java/com/github/javaparser/generator/core/visitor/
NoCommentEqualsVisitorGenerator.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.generator.core.visitor;
24 import static com.github.javaparser.utils.CodeGenerationUtils.f;
26 import com.github.javaparser.ast.CompilationUnit;
27 import com.github.javaparser.ast.body.MethodDeclaration;
28 import com.github.javaparser.ast.stmt.BlockStmt;
29 import com.github.javaparser.generator.VisitorGenerator;
    [all...]
  /external/javaparser/javaparser-symbol-solver-core/src/main/java/com/github/javaparser/symbolsolver/javaparsermodel/contexts/
CatchClauseContext.java 1 package com.github.javaparser.symbolsolver.javaparsermodel.contexts;
3 import com.github.javaparser.ast.stmt.CatchClause;
4 import com.github.javaparser.resolution.declarations.ResolvedMethodDeclaration;
5 import com.github.javaparser.resolution.declarations.ResolvedValueDeclaration;
6 import com.github.javaparser.resolution.types.ResolvedType;
7 import com.github.javaparser.symbolsolver.javaparsermodel.JavaParserFactory;
8 import com.github.javaparser.symbolsolver.model.resolution.SymbolReference;
9 import com.github.javaparser.symbolsolver.model.resolution.TypeSolver;
10 import com.github.javaparser.symbolsolver.model.resolution.Value;
11 import com.github.javaparser.symbolsolver.resolution.SymbolDeclarator
    [all...]
  /external/javaparser/javaparser-testing/src/test/java/com/github/javaparser/ast/
ParseResultTest.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;
24 import com.github.javaparser.JavaParser;
25 import com.github.javaparser.ParseResult;
26 import com.github.javaparser.ParserConfiguration;
27 import com.github.javaparser.Problem
    [all...]
  /external/javaparser/javaparser-symbol-solver-testing/src/test/java/com/github/javaparser/symbolsolver/resolution/javaparser/contexts/
MethodCallExprContextResolutionTest.java 17 package com.github.javaparser.symbolsolver.resolution.javaparser.contexts;
19 import com.github.javaparser.ParseException;
20 import com.github.javaparser.ast.CompilationUnit;
21 import com.github.javaparser.ast.body.MethodDeclaration;
22 import com.github.javaparser.ast.expr.MethodCallExpr;
23 import com.github.javaparser.resolution.MethodUsage;
24 import com.github.javaparser.resolution.declarations.ResolvedReferenceTypeDeclaration;
25 import com.github.javaparser.resolution.types.ResolvedType;
26 import com.github.javaparser.symbolsolver.core.resolution.Context
    [all...]
  /external/javaparser/javaparser-core/src/main/java/com/github/javaparser/ast/expr/
SimpleName.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.expr;
23 import com.github.javaparser.ast.AllFieldsConstructor;
24 import com.github.javaparser.ast.Node;
25 import com.github.javaparser.ast.nodeTypes.NodeWithIdentifier;
26 import com.github.javaparser.ast.observer.ObservableProperty;
27 import com.github.javaparser.ast.visitor.GenericVisitor
    [all...]
LiteralExpr.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.expr;
23 import com.github.javaparser.ast.AllFieldsConstructor;
24 import com.github.javaparser.ast.Node;
25 import com.github.javaparser.ast.visitor.CloneVisitor;
26 import com.github.javaparser.metamodel.JavaParserMetaModel;
27 import com.github.javaparser.metamodel.LiteralExprMetaModel
    [all...]
LiteralStringValueExpr.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.expr;
23 import com.github.javaparser.ast.AllFieldsConstructor;
24 import com.github.javaparser.ast.Node;
25 import com.github.javaparser.ast.observer.ObservableProperty;
26 import com.github.javaparser.ast.visitor.CloneVisitor;
27 import com.github.javaparser.metamodel.JavaParserMetaModel
    [all...]
NullLiteralExpr.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.expr;
23 import com.github.javaparser.ast.AllFieldsConstructor;
24 import com.github.javaparser.ast.visitor.GenericVisitor;
25 import com.github.javaparser.ast.visitor.VoidVisitor;
26 import com.github.javaparser.ast.Node;
27 import com.github.javaparser.ast.visitor.CloneVisitor
    [all...]
  /external/javaparser/javaparser-core/src/main/java/com/github/javaparser/ast/modules/
ModuleUsesStmt.java 1 package com.github.javaparser.ast.modules;
3 import com.github.javaparser.ast.AllFieldsConstructor;
4 import com.github.javaparser.ast.Node;
5 import com.github.javaparser.ast.nodeTypes.NodeWithType;
6 import com.github.javaparser.ast.observer.ObservableProperty;
7 import com.github.javaparser.ast.type.Type;
8 import com.github.javaparser.ast.visitor.CloneVisitor;
9 import com.github.javaparser.ast.visitor.GenericVisitor;
10 import com.github.javaparser.ast.visitor.VoidVisitor;
11 import com.github.javaparser.metamodel.JavaParserMetaModel
    [all...]
  /external/javaparser/javaparser-core-generators/src/main/java/com/github/javaparser/generator/core/node/
RemoveMethodGenerator.java 1 package com.github.javaparser.generator.core.node;
3 import com.github.javaparser.ast.CompilationUnit;
4 import com.github.javaparser.ast.Node;
5 import com.github.javaparser.ast.body.ClassOrInterfaceDeclaration;
6 import com.github.javaparser.ast.body.MethodDeclaration;
7 import com.github.javaparser.ast.stmt.BlockStmt;
8 import com.github.javaparser.generator.NodeGenerator;
9 import com.github.javaparser.utils.SourceRoot;
10 import com.github.javaparser.metamodel.BaseNodeMetaModel;
11 import com.github.javaparser.metamodel.PropertyMetaModel
    [all...]
ReplaceMethodGenerator.java 1 package com.github.javaparser.generator.core.node;
3 import com.github.javaparser.ast.CompilationUnit;
4 import com.github.javaparser.ast.Node;
5 import com.github.javaparser.ast.body.ClassOrInterfaceDeclaration;
6 import com.github.javaparser.ast.body.MethodDeclaration;
7 import com.github.javaparser.ast.stmt.BlockStmt;
8 import com.github.javaparser.generator.NodeGenerator;
9 import com.github.javaparser.metamodel.BaseNodeMetaModel;
10 import com.github.javaparser.metamodel.PropertyMetaModel;
11 import com.github.javaparser.utils.SourceRoot
    [all...]
  /external/javaparser/javaparser-symbol-solver-testing/src/test/test_sourcecode/javaparser_new_src/javaparser-core/com/github/javaparser/ast/body/
EnumConstantDeclaration.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.body;
24 import static com.github.javaparser.ast.expr.NameExpr.*;
25 import static com.github.javaparser.utils.Utils.ensureNotNull;
29 import com.github.javaparser.Range;
30 import com.github.javaparser.ast.comments.JavadocComment;
31 import com.github.javaparser.ast.expr.AnnotationExpr
    [all...]
InitializerDeclaration.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.body;
24 import com.github.javaparser.Range;
25 import com.github.javaparser.ast.comments.JavadocComment;
26 import com.github.javaparser.ast.nodeTypes.NodeWithJavaDoc;
27 import com.github.javaparser.ast.stmt.BlockStmt;
28 import com.github.javaparser.ast.visitor.GenericVisitor
    [all...]
  /external/javaparser/javaparser-testing/src/test/java/com/github/javaparser/wiki_samples/
ClassCreator.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.wiki_samples;
24 import com.github.javaparser.ast.CompilationUnit;
25 import com.github.javaparser.ast.Modifier;
26 import com.github.javaparser.ast.PackageDeclaration;
27 import com.github.javaparser.ast.body.ClassOrInterfaceDeclaration;
28 import com.github.javaparser.ast.body.MethodDeclaration
    [all...]
  /external/javaparser/javaparser-core/src/main/java/com/github/javaparser/ast/stmt/
CatchClause.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.Modifier;
25 import com.github.javaparser.ast.Node;
26 import com.github.javaparser.ast.NodeList;
27 import com.github.javaparser.ast.body.Parameter
    [all...]
EmptyStmt.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.TokenRange;
24 import com.github.javaparser.ast.AllFieldsConstructor;
25 import com.github.javaparser.ast.Node;
26 import com.github.javaparser.ast.visitor.CloneVisitor;
27 import com.github.javaparser.ast.visitor.GenericVisitor
    [all...]
  /external/javaparser/javaparser-core/src/main/java/com/github/javaparser/printer/concretesyntaxmodel/
CsmComment.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.concretesyntaxmodel;
24 import com.github.javaparser.ast.Node;
25 import com.github.javaparser.ast.comments.BlockComment;
26 import com.github.javaparser.ast.comments.Comment;
27 import com.github.javaparser.ast.comments.JavadocComment;
28 import com.github.javaparser.ast.comments.LineComment
    [all...]
  /external/javaparser/javaparser-core/src/main/javacc-support/com/github/javaparser/
GeneratedJavaParserTokenManagerBase.java 1 package com.github.javaparser;
3 import com.github.javaparser.ast.comments.BlockComment;
4 import com.github.javaparser.ast.comments.Comment;
5 import com.github.javaparser.ast.comments.JavadocComment;
6 import com.github.javaparser.ast.comments.LineComment;
8 import static com.github.javaparser.GeneratedJavaParserConstants.*;
9 import static com.github.javaparser.Position.pos;
12 * Base class for {@link com.github.javaparser.GeneratedJavaParserTokenManager}
  /external/javaparser/javaparser-symbol-solver-core/src/main/java/com/github/javaparser/symbolsolver/javaparsermodel/declarations/
DefaultConstructorDeclaration.java 17 package com.github.javaparser.symbolsolver.javaparsermodel.declarations;
19 import com.github.javaparser.ast.AccessSpecifier;
20 import com.github.javaparser.resolution.declarations.ResolvedClassDeclaration;
21 import com.github.javaparser.resolution.declarations.ResolvedConstructorDeclaration;
22 import com.github.javaparser.resolution.declarations.ResolvedParameterDeclaration;
23 import com.github.javaparser.resolution.declarations.ResolvedTypeParameterDeclaration;
24 import com.github.javaparser.resolution.types.ResolvedType;
  /external/javaparser/javaparser-symbol-solver-testing/src/test/java/com/github/javaparser/symbolsolver/logic/
FunctionInterfaceLogicTest.java 17 package com.github.javaparser.symbolsolver.logic;
19 import com.github.javaparser.resolution.types.ResolvedType;
20 import com.github.javaparser.symbolsolver.model.resolution.TypeSolver;
21 import com.github.javaparser.symbolsolver.model.typesystem.ReferenceTypeImpl;
22 import com.github.javaparser.symbolsolver.reflectionmodel.ReflectionClassDeclaration;
23 import com.github.javaparser.symbolsolver.reflectionmodel.ReflectionInterfaceDeclaration;
24 import com.github.javaparser.symbolsolver.resolution.typesolvers.ReflectionTypeSolver;
  /external/javaparser/javaparser-symbol-solver-testing/src/test/test_sourcecode/javaparser_new_src/javaparser-core/com/github/javaparser/ast/expr/
LambdaExpr.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.expr;
24 import com.github.javaparser.Range;
25 import com.github.javaparser.ast.body.Parameter;
26 import com.github.javaparser.ast.stmt.Statement;
27 import com.github.javaparser.ast.visitor.GenericVisitor;
28 import com.github.javaparser.ast.visitor.VoidVisitor
    [all...]
  /external/javaparser/javaparser-testing/src/test/java/com/github/javaparser/
ParserConfigurationTest.java 1 package com.github.javaparser;
3 import com.github.javaparser.ast.CompilationUnit;
4 import com.github.javaparser.ast.Node;
5 import com.github.javaparser.ast.stmt.Statement;
8 import static com.github.javaparser.ParseStart.STATEMENT;
9 import static com.github.javaparser.ParserConfiguration.LanguageLevel.*;
10 import static com.github.javaparser.Providers.provider;
18 ParseResult<CompilationUnit> result = new JavaParser(new ParserConfiguration().setStoreTokens(false)).parse(ParseStart.COMPILATION_UNIT, provider("class X{}"));
27 new JavaParser(new ParserConfiguration().setLanguageLevel(RAW))
  /external/javaparser/javaparser-testing/src/test/java/com/github/javaparser/ast/comments/
CommentTest.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.comments;
24 import com.github.javaparser.ast.CompilationUnit;
25 import com.github.javaparser.ast.Modifier;
26 import com.github.javaparser.ast.body.ClassOrInterfaceDeclaration;
27 import com.github.javaparser.ast.expr.Name;
32 import static com.github.javaparser.JavaParser.parse
    [all...]
  /external/javaparser/javaparser-core/src/main/java/com/github/javaparser/ast/comments/
BlockComment.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.comments;
23 import com.github.javaparser.ast.AllFieldsConstructor;
24 import com.github.javaparser.ast.visitor.GenericVisitor;
25 import com.github.javaparser.ast.visitor.VoidVisitor;
26 import com.github.javaparser.ast.Node;
27 import com.github.javaparser.ast.visitor.CloneVisitor
    [all...]
LineComment.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.comments;
23 import com.github.javaparser.ast.AllFieldsConstructor;
24 import com.github.javaparser.ast.visitor.GenericVisitor;
25 import com.github.javaparser.ast.visitor.VoidVisitor;
26 import com.github.javaparser.ast.Node;
27 import com.github.javaparser.ast.visitor.CloneVisitor
    [all...]

Completed in 447 milliseconds

<<11121314151617181920>>