Java Code Examples for com.github.javaparser.ast.body.MethodDeclaration#setName()
The following examples show how to use
com.github.javaparser.ast.body.MethodDeclaration#setName() .
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: ApplicationGeneratorTest.java From kogito-runtimes with Apache License 2.0 | 6 votes |
@Test public void compilationUnitWithFactoryMethods() { final ApplicationGenerator appGenerator = new ApplicationGenerator(PACKAGE_NAME, new File("target")); final String testMethodName = "testMethod"; final MethodDeclaration methodDeclaration = new MethodDeclaration(); methodDeclaration.setName(testMethodName); appGenerator.addFactoryMethods(Collections.singleton(methodDeclaration)); final CompilationUnit compilationUnit = appGenerator.compilationUnit(); assertCompilationUnit(compilationUnit, false, 5); final TypeDeclaration mainAppClass = compilationUnit.getTypes().get(0); assertThat(mainAppClass.getMembers()) .filteredOn(member -> member instanceof MethodDeclaration && ((MethodDeclaration) member).getName().toString().equals(testMethodName)) .hasSize(1); }
Example 2
Source File: MethodDeclarationMerger.java From dolphin with Apache License 2.0 | 6 votes |
@Override public MethodDeclaration doMerge(MethodDeclaration first, MethodDeclaration second) { MethodDeclaration md = new MethodDeclaration(); md.setName(first.getName()); md.setType(mergeSingle(first.getType(), second.getType())); md.setJavaDoc(mergeSingle(first.getJavaDoc(), second.getJavaDoc())); md.setModifiers(mergeModifiers(first.getModifiers(), second.getModifiers())); md.setDefault(first.isDefault() || second.isDefault()); md.setArrayCount(Math.max(first.getArrayCount(), second.getArrayCount())); md.setAnnotations(mergeCollections(first.getAnnotations(), second.getAnnotations())); md.setThrows(mergeListNoDuplicate(first.getThrows(), second.getThrows(), false)); md.setParameters(mergeCollectionsInOrder(first.getParameters(), second.getParameters())); md.setTypeParameters(mergeCollectionsInOrder(first.getTypeParameters(), second.getTypeParameters())); md.setBody(mergeSingle(first.getBody(), second.getBody())); return md; }
Example 3
Source File: AbstractResourceGenerator.java From kogito-runtimes with Apache License 2.0 | 4 votes |
private void interpolateMethods(MethodDeclaration m) { SimpleName methodName = m.getName(); String interpolated = methodName.asString().replace("$name$", processName); m.setName(interpolated); }
Example 4
Source File: DMNRestResourceGenerator.java From kogito-runtimes with Apache License 2.0 | 4 votes |
public String generate() { CompilationUnit clazz = parse(this.getClass().getResourceAsStream("/class-templates/DMNRestResourceTemplate.java")); clazz.setPackageDeclaration(this.packageName); ClassOrInterfaceDeclaration template = clazz .findFirst(ClassOrInterfaceDeclaration.class) .orElseThrow(() -> new NoSuchElementException("Compilation unit doesn't contain a class or interface declaration!")); template.setName(resourceClazzName); template.findAll(StringLiteralExpr.class).forEach(this::interpolateStrings); template.findAll(MethodDeclaration.class).forEach(this::interpolateMethods); interpolateInputType(template); if (useInjection()) { template.findAll(FieldDeclaration.class, CodegenUtils::isApplicationField).forEach(fd -> annotator.withInjection(fd)); } else { template.findAll(FieldDeclaration.class, CodegenUtils::isApplicationField).forEach(this::initializeApplicationField); } MethodDeclaration dmnMethod = template.findAll(MethodDeclaration.class, x -> x.getName().toString().equals("dmn")).get(0); for (DecisionService ds : dmnModel.getDefinitions().getDecisionService()) { if (ds.getAdditionalAttributes().keySet().stream().anyMatch(qn -> qn.getLocalPart().equals("dynamicDecisionService"))) { continue; } MethodDeclaration clonedMethod = dmnMethod.clone(); String name = CodegenStringUtil.escapeIdentifier("decisionService_" + ds.getName()); clonedMethod.setName(name); MethodCallExpr evaluateCall = clonedMethod.findFirst(MethodCallExpr.class, x -> x.getNameAsString().equals("evaluateAll")).orElseThrow(() -> new RuntimeException("Template was modified!")); evaluateCall.setName(new SimpleName("evaluateDecisionService")); evaluateCall.addArgument(new StringLiteralExpr(ds.getName())); clonedMethod.addAnnotation(new SingleMemberAnnotationExpr(new Name("javax.ws.rs.Path"), new StringLiteralExpr("/" + ds.getName()))); ReturnStmt returnStmt = clonedMethod.findFirst(ReturnStmt.class).orElseThrow(() -> new RuntimeException("Template was modified!")); if (ds.getOutputDecision().size() == 1) { MethodCallExpr rewrittenReturnExpr = returnStmt.findFirst(MethodCallExpr.class, mce -> mce.getNameAsString().equals("extractContextIfSucceded")) .orElseThrow(() -> new RuntimeException("Template was modified!")); rewrittenReturnExpr.setName("extractSingletonDSIfSucceded"); } if (useMonitoring) { addMonitoringToMethod(clonedMethod, ds.getName()); } template.addMember(clonedMethod); } if (useMonitoring) { addMonitoringImports(clazz); ClassOrInterfaceDeclaration exceptionClazz = clazz.findFirst(ClassOrInterfaceDeclaration.class, x -> "DMNEvaluationErrorExceptionMapper".equals(x.getNameAsString())) .orElseThrow(() -> new NoSuchElementException("Could not find DMNEvaluationErrorExceptionMapper, template has changed.")); addExceptionMetricsLogging(exceptionClazz, nameURL); addMonitoringToMethod(dmnMethod, nameURL); } template.getMembers().sort(new BodyDeclarationComparator()); return clazz.toString(); }
Example 5
Source File: DMNRestResourceGenerator.java From kogito-runtimes with Apache License 2.0 | 4 votes |
private void interpolateMethods(MethodDeclaration m) { SimpleName methodName = m.getName(); String interpolated = methodName.asString().replace("$name$", decisionName); m.setName(interpolated); }
Example 6
Source File: RenameMethod.java From Refactoring-Bot with MIT License | 2 votes |
/** * Renames the given method to the given new method name * * @param methodDeclaration * @param newMethodName */ private void renameMethod(MethodDeclaration methodDeclaration, String newMethodName) { methodDeclaration.setName(newMethodName); }