com.sun.source.tree.RequiresTree Java Examples
The following examples show how to use
com.sun.source.tree.RequiresTree.
You can vote up the ones you like or vote down the ones you don't like,
and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example #1
Source File: GoToSupport.java From netbeans with Apache License 2.0 | 6 votes |
private static TreePath adjustPathForModuleName(TreePath path) { TreePath tp = path; while (tp != null && (tp.getLeaf().getKind() == Kind.IDENTIFIER || tp.getLeaf().getKind() == Kind.MEMBER_SELECT)) { Tree parent = tp.getParentPath().getLeaf(); if (parent.getKind() == Kind.MODULE && ((ModuleTree)parent).getName() == tp.getLeaf()) { return tp.getParentPath(); } if (parent.getKind() == Kind.REQUIRES && ((RequiresTree)parent).getModuleName() == tp.getLeaf() || parent.getKind() == Kind.EXPORTS && ((ExportsTree)parent).getModuleNames() != null && ((ExportsTree)parent).getModuleNames().contains(tp.getLeaf()) || parent.getKind() == Kind.OPENS && ((OpensTree)parent).getModuleNames() != null && ((OpensTree)parent).getModuleNames().contains(tp.getLeaf())) { return tp; } tp = tp.getParentPath(); } return path; }
Example #2
Source File: JavaInputAstVisitor.java From google-java-format with Apache License 2.0 | 6 votes |
@Override public Void visitRequires(RequiresTree node, Void unused) { token("requires"); builder.space(); while (true) { if (builder.peekToken().equals(Optional.of("static"))) { token("static"); builder.space(); } else if (builder.peekToken().equals(Optional.of("transitive"))) { token("transitive"); builder.space(); } else { break; } } scan(node.getModuleName(), null); token(";"); return null; }
Example #3
Source File: TreeDuplicator.java From netbeans with Apache License 2.0 | 5 votes |
@Override public Tree visitRequires(RequiresTree tree, Void p) { RequiresTree n = make.Requires(tree.isTransitive(), tree.isStatic(), tree.getModuleName()); model.setType(n, model.getType(tree)); comments.copyComments(tree, n); model.setPos(n, model.getPos(tree)); return n; }
Example #4
Source File: SemanticHighlighterBase.java From netbeans with Apache License 2.0 | 5 votes |
@Override public Void visitRequires(RequiresTree tree, Void p) { tl.moveToOffset(sourcePositions.getStartPosition(info.getCompilationUnit(), tree)); Token t = firstIdentifierToken("requires"); //NOI18N if (t != null) { contextKeywords.add(t); tl.moveNext(); if (tree.isStatic() && tree.isTransitive()) { t = firstIdentifierToken("static", "transitive"); //NOI18N if (t != null) { contextKeywords.add(t); } tl.moveNext(); t = firstIdentifierToken("static", "transitive"); //NOI18N if (t != null) { contextKeywords.add(t); } } else if (tree.isStatic()) { t = firstIdentifierToken("static"); //NOI18N if (t != null) { contextKeywords.add(t); } } else if (tree.isTransitive()) { t = firstIdentifierToken("transitive"); //NOI18N if (t != null) { contextKeywords.add(t); } } } return super.visitRequires(tree, p); }
Example #5
Source File: DefaultProjectModulesModifier.java From netbeans with Apache License 2.0 | 5 votes |
@Override public Object visitRequires(RequiresTree node, Object p) { String s = node.getModuleName().toString(); URL u = modLocations.get(s); if (u != null) { resultMap.computeIfAbsent(u, (x) -> new ArrayList<>()).add(g); } return null; }
Example #6
Source File: TreeNode.java From netbeans with Apache License 2.0 | 5 votes |
@Override public Void visitRequires(RequiresTree tree, List<Node> d) { List<Node> below = new ArrayList<Node>(); addCorrespondingType(below); addCorrespondingComments(below); super.visitRequires(tree, below); d.add(new TreeNode(info, getCurrentPath(), below)); return null; }
Example #7
Source File: ExpectedTypeResolver.java From netbeans with Apache License 2.0 | 4 votes |
@Override public List<? extends TypeMirror> visitRequires(RequiresTree node, Object p) { return null; }
Example #8
Source File: CanInterpretVisitor.java From netbeans with Apache License 2.0 | 4 votes |
@Override public Boolean visitRequires(RequiresTree node, EvaluationContext p) { return Boolean.FALSE; }
Example #9
Source File: JavacModuleParser.java From pro with GNU General Public License v3.0 | 4 votes |
public void visitRequires(RequiresTree node, @SuppressWarnings("unused") TreeVisitor<?, ?> __) { var modifiers = (node.isStatic()? ACC_STATIC: 0) | (node.isTransitive()? ACC_TRANSITIVE: 0); mv.visitRequire(qualifiedString(node.getModuleName()), modifiers, null); }