From cfcfd539660fb4743b9f33a179489d5936f200c7 Mon Sep 17 00:00:00 2001 From: Philippe Brossel Date: Sun, 5 May 2024 00:24:25 +0200 Subject: [PATCH] [WIP] fake changes after clean/rebuild all Signed-off-by: Philippe Brossel --- .../core/macro/TransformationContextImpl.java | 20 +++++++++---------- .../core/macro/ValidationContextImpl.java | 20 +++++++++---------- 2 files changed, 20 insertions(+), 20 deletions(-) diff --git a/org.eclipse.xtend.core/xtend-gen/org/eclipse/xtend/core/macro/TransformationContextImpl.java b/org.eclipse.xtend.core/xtend-gen/org/eclipse/xtend/core/macro/TransformationContextImpl.java index aa3a98c201f..341dc505f62 100644 --- a/org.eclipse.xtend.core/xtend-gen/org/eclipse/xtend/core/macro/TransformationContextImpl.java +++ b/org.eclipse.xtend.core/xtend-gen/org/eclipse/xtend/core/macro/TransformationContextImpl.java @@ -106,8 +106,8 @@ public List getProblems(final Element element) { return this.getProblemSupport().getProblems(element); } - public void validateLater(final Procedure0 arg0) { - this.getProblemSupport().validateLater(arg0); + public void validateLater(final Procedure0 validationCallback) { + this.getProblemSupport().validateLater(validationCallback); } public MutableAnnotationTypeDeclaration findAnnotationType(final String qualifiedName) { @@ -226,32 +226,32 @@ public AnnotationReference newAnnotationReference(final AnnotationReference anno return this.getAnnotationReferenceProvider().newAnnotationReference(annotationReference); } - public AnnotationReference newAnnotationReference(final AnnotationReference arg0, final Procedure1 arg1) { - return this.getAnnotationReferenceProvider().newAnnotationReference(arg0, arg1); + public AnnotationReference newAnnotationReference(final AnnotationReference annotationReference, final Procedure1 initializer) { + return this.getAnnotationReferenceProvider().newAnnotationReference(annotationReference, initializer); } public AnnotationReference newAnnotationReference(final Class annotationClass) { return this.getAnnotationReferenceProvider().newAnnotationReference(annotationClass); } - public AnnotationReference newAnnotationReference(final Class arg0, final Procedure1 arg1) { - return this.getAnnotationReferenceProvider().newAnnotationReference(arg0, arg1); + public AnnotationReference newAnnotationReference(final Class annotationClass, final Procedure1 initializer) { + return this.getAnnotationReferenceProvider().newAnnotationReference(annotationClass, initializer); } public AnnotationReference newAnnotationReference(final String annotationTypeName) { return this.getAnnotationReferenceProvider().newAnnotationReference(annotationTypeName); } - public AnnotationReference newAnnotationReference(final String arg0, final Procedure1 arg1) { - return this.getAnnotationReferenceProvider().newAnnotationReference(arg0, arg1); + public AnnotationReference newAnnotationReference(final String annotationTypeName, final Procedure1 initializer) { + return this.getAnnotationReferenceProvider().newAnnotationReference(annotationTypeName, initializer); } public AnnotationReference newAnnotationReference(final Type annotationTypeDelcaration) { return this.getAnnotationReferenceProvider().newAnnotationReference(annotationTypeDelcaration); } - public AnnotationReference newAnnotationReference(final Type arg0, final Procedure1 arg1) { - return this.getAnnotationReferenceProvider().newAnnotationReference(arg0, arg1); + public AnnotationReference newAnnotationReference(final Type annotationTypeDelcaration, final Procedure1 initializer) { + return this.getAnnotationReferenceProvider().newAnnotationReference(annotationTypeDelcaration, initializer); } public boolean exists(final Path path) { diff --git a/org.eclipse.xtend.core/xtend-gen/org/eclipse/xtend/core/macro/ValidationContextImpl.java b/org.eclipse.xtend.core/xtend-gen/org/eclipse/xtend/core/macro/ValidationContextImpl.java index af52f5c746a..e6ad97b2ace 100644 --- a/org.eclipse.xtend.core/xtend-gen/org/eclipse/xtend/core/macro/ValidationContextImpl.java +++ b/org.eclipse.xtend.core/xtend-gen/org/eclipse/xtend/core/macro/ValidationContextImpl.java @@ -99,8 +99,8 @@ public List getProblems(final Element element) { return this.getProblemSupport().getProblems(element); } - public void validateLater(final Procedure0 arg0) { - this.getProblemSupport().validateLater(arg0); + public void validateLater(final Procedure0 validationCallback) { + this.getProblemSupport().validateLater(validationCallback); } public MutableAnnotationTypeDeclaration findAnnotationType(final String qualifiedName) { @@ -219,32 +219,32 @@ public AnnotationReference newAnnotationReference(final AnnotationReference anno return this.getAnnotationReferenceProvider().newAnnotationReference(annotationReference); } - public AnnotationReference newAnnotationReference(final AnnotationReference arg0, final Procedure1 arg1) { - return this.getAnnotationReferenceProvider().newAnnotationReference(arg0, arg1); + public AnnotationReference newAnnotationReference(final AnnotationReference annotationReference, final Procedure1 initializer) { + return this.getAnnotationReferenceProvider().newAnnotationReference(annotationReference, initializer); } public AnnotationReference newAnnotationReference(final Class annotationClass) { return this.getAnnotationReferenceProvider().newAnnotationReference(annotationClass); } - public AnnotationReference newAnnotationReference(final Class arg0, final Procedure1 arg1) { - return this.getAnnotationReferenceProvider().newAnnotationReference(arg0, arg1); + public AnnotationReference newAnnotationReference(final Class annotationClass, final Procedure1 initializer) { + return this.getAnnotationReferenceProvider().newAnnotationReference(annotationClass, initializer); } public AnnotationReference newAnnotationReference(final String annotationTypeName) { return this.getAnnotationReferenceProvider().newAnnotationReference(annotationTypeName); } - public AnnotationReference newAnnotationReference(final String arg0, final Procedure1 arg1) { - return this.getAnnotationReferenceProvider().newAnnotationReference(arg0, arg1); + public AnnotationReference newAnnotationReference(final String annotationTypeName, final Procedure1 initializer) { + return this.getAnnotationReferenceProvider().newAnnotationReference(annotationTypeName, initializer); } public AnnotationReference newAnnotationReference(final Type annotationTypeDelcaration) { return this.getAnnotationReferenceProvider().newAnnotationReference(annotationTypeDelcaration); } - public AnnotationReference newAnnotationReference(final Type arg0, final Procedure1 arg1) { - return this.getAnnotationReferenceProvider().newAnnotationReference(arg0, arg1); + public AnnotationReference newAnnotationReference(final Type annotationTypeDelcaration, final Procedure1 initializer) { + return this.getAnnotationReferenceProvider().newAnnotationReference(annotationTypeDelcaration, initializer); } public boolean exists(final Path path) {