Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

WildcardTypeName doesn't emit annotations #959

Open
lsingh123 opened this issue Feb 14, 2023 · 1 comment
Open

WildcardTypeName doesn't emit annotations #959

lsingh123 opened this issue Feb 14, 2023 · 1 comment

Comments

@lsingh123
Copy link

WildcardTypeName ignores its annotations when emitting. For example, consider the following code:

        WildcardTypeName wildcard = WildcardTypeName.subtypeOf(com.squareup.javapoet.TypeName.LONG.box())
                .annotated(List.of(AnnotationSpec.builder(Safe.class).build()));
        ParameterizedTypeName paramTypeName = ParameterizedTypeName.get(ClassName.get(Optional.class), wildcard);
        TypeSpec testTypeSpec = TypeSpec.classBuilder("PoetTestClass")
                .addField(paramTypeName, "testWildcardField", Modifier.PRIVATE)
                .build();
        JavaFile file = JavaFile.builder("com.poet.test", testTypeSpec)
                .skipJavaLangImports(true)
                .indent("    ")
                .build();
        file.writeTo(tempDir.toPath(), StandardCharsets.UTF_8);

We expect this to output:

package com.poet.test;

import java.util.Optional;

class PoetTestClass {
    private Optional<@Safe ? extends Long> testWildcardField;
}

But instead it outputs:

package com.poet.test;

import java.util.Optional;

class PoetTestClass {
    private Optional<? extends Long> testWildcardField;
}
@ritikverma2000
Copy link

Hi, I would like to work on this issue. Since I am new to open source world it would be great if you can guide me.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants