Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -106,8 +106,8 @@ public List<? extends Problem> 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) {
Expand Down Expand Up @@ -226,32 +226,32 @@ public AnnotationReference newAnnotationReference(final AnnotationReference anno
return this.getAnnotationReferenceProvider().newAnnotationReference(annotationReference);
}

public AnnotationReference newAnnotationReference(final AnnotationReference arg0, final Procedure1<AnnotationReferenceBuildContext> arg1) {
return this.getAnnotationReferenceProvider().newAnnotationReference(arg0, arg1);
public AnnotationReference newAnnotationReference(final AnnotationReference annotationReference, final Procedure1<AnnotationReferenceBuildContext> 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<AnnotationReferenceBuildContext> arg1) {
return this.getAnnotationReferenceProvider().newAnnotationReference(arg0, arg1);
public AnnotationReference newAnnotationReference(final Class<?> annotationClass, final Procedure1<AnnotationReferenceBuildContext> 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<AnnotationReferenceBuildContext> arg1) {
return this.getAnnotationReferenceProvider().newAnnotationReference(arg0, arg1);
public AnnotationReference newAnnotationReference(final String annotationTypeName, final Procedure1<AnnotationReferenceBuildContext> 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<AnnotationReferenceBuildContext> arg1) {
return this.getAnnotationReferenceProvider().newAnnotationReference(arg0, arg1);
public AnnotationReference newAnnotationReference(final Type annotationTypeDelcaration, final Procedure1<AnnotationReferenceBuildContext> initializer) {
return this.getAnnotationReferenceProvider().newAnnotationReference(annotationTypeDelcaration, initializer);
}

public boolean exists(final Path path) {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -99,8 +99,8 @@ public List<? extends Problem> 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) {
Expand Down Expand Up @@ -219,32 +219,32 @@ public AnnotationReference newAnnotationReference(final AnnotationReference anno
return this.getAnnotationReferenceProvider().newAnnotationReference(annotationReference);
}

public AnnotationReference newAnnotationReference(final AnnotationReference arg0, final Procedure1<AnnotationReferenceBuildContext> arg1) {
return this.getAnnotationReferenceProvider().newAnnotationReference(arg0, arg1);
public AnnotationReference newAnnotationReference(final AnnotationReference annotationReference, final Procedure1<AnnotationReferenceBuildContext> 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<AnnotationReferenceBuildContext> arg1) {
return this.getAnnotationReferenceProvider().newAnnotationReference(arg0, arg1);
public AnnotationReference newAnnotationReference(final Class<?> annotationClass, final Procedure1<AnnotationReferenceBuildContext> 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<AnnotationReferenceBuildContext> arg1) {
return this.getAnnotationReferenceProvider().newAnnotationReference(arg0, arg1);
public AnnotationReference newAnnotationReference(final String annotationTypeName, final Procedure1<AnnotationReferenceBuildContext> 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<AnnotationReferenceBuildContext> arg1) {
return this.getAnnotationReferenceProvider().newAnnotationReference(arg0, arg1);
public AnnotationReference newAnnotationReference(final Type annotationTypeDelcaration, final Procedure1<AnnotationReferenceBuildContext> initializer) {
return this.getAnnotationReferenceProvider().newAnnotationReference(annotationTypeDelcaration, initializer);
}

public boolean exists(final Path path) {
Expand Down
Loading