Java Code Examples for org.codehaus.groovy.ast.ModuleNode#getClasses()
The following examples show how to use
org.codehaus.groovy.ast.ModuleNode#getClasses() .
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: TestMethodUtil.java From netbeans with Apache License 2.0 | 6 votes |
/** * Given a root {@link ModuleNode ModuleNode}, finds and returns the * {@link ClassNode ClassNode} for the given line and column. It is possible * in some situations for this to be null. * * @param root the root ModuleNode * @param line the line * @param col the column * @return the ClassNode for the line and column (cursor) */ public static ClassNode getClassNodeForLineAndColumn(final ModuleNode root, final int line, final int col) { ClassNode ret = null; if (root != null) { final List<ClassNode> classes = root.getClasses(); for (ClassNode cn : classes) { if (isBetweenLinesAndColumns(cn.getLineNumber(), cn.getColumnNumber(), cn.getLastLineNumber(), cn.getLastColumnNumber(), line, col)) { return cn; } } } return ret; }
Example 2
Source File: DetectorTransform.java From pushfish-android with BSD 2-Clause "Simplified" License | 5 votes |
public void visit(ASTNode[] nodes, SourceUnit source) { if (nodes.length == 0 || !(nodes[0] instanceof ModuleNode)) { source.getErrorCollector().addError(new SimpleMessage( "internal error in DetectorTransform", source)); return; } ModuleNode module = (ModuleNode)nodes[0]; for (ClassNode clazz : (List<ClassNode>)module.getClasses()) { FieldNode field = clazz.getField(VERSION_FIELD_NAME); if (field != null) { field.setInitialValueExpression(new ConstantExpression(ReleaseInfo.getVersion())); break; } } }
Example 3
Source File: DetectorTransform.java From pushfish-android with BSD 2-Clause "Simplified" License | 5 votes |
public void visit(ASTNode[] nodes, SourceUnit source) { if (nodes.length == 0 || !(nodes[0] instanceof ModuleNode)) { source.getErrorCollector().addError(new SimpleMessage( "internal error in DetectorTransform", source)); return; } ModuleNode module = (ModuleNode)nodes[0]; for (ClassNode clazz : (List<ClassNode>)module.getClasses()) { FieldNode field = clazz.getField(VERSION_FIELD_NAME); if (field != null) { field.setInitialValueExpression(new ConstantExpression(ReleaseInfo.getVersion())); break; } } }
Example 4
Source File: DetectorTransform.java From Pushjet-Android with BSD 2-Clause "Simplified" License | 5 votes |
public void visit(ASTNode[] nodes, SourceUnit source) { if (nodes.length == 0 || !(nodes[0] instanceof ModuleNode)) { source.getErrorCollector().addError(new SimpleMessage( "internal error in DetectorTransform", source)); return; } ModuleNode module = (ModuleNode)nodes[0]; for (ClassNode clazz : (List<ClassNode>)module.getClasses()) { FieldNode field = clazz.getField(VERSION_FIELD_NAME); if (field != null) { field.setInitialValueExpression(new ConstantExpression(ReleaseInfo.getVersion())); break; } } }
Example 5
Source File: DetectorTransform.java From Pushjet-Android with BSD 2-Clause "Simplified" License | 5 votes |
public void visit(ASTNode[] nodes, SourceUnit source) { if (nodes.length == 0 || !(nodes[0] instanceof ModuleNode)) { source.getErrorCollector().addError(new SimpleMessage( "internal error in DetectorTransform", source)); return; } ModuleNode module = (ModuleNode)nodes[0]; for (ClassNode clazz : (List<ClassNode>)module.getClasses()) { FieldNode field = clazz.getField(VERSION_FIELD_NAME); if (field != null) { field.setInitialValueExpression(new ConstantExpression(ReleaseInfo.getVersion())); break; } } }