Skip to content

Find usages of a property not possible when normal getter/setters are used. #37

@EotT123

Description

@EotT123

When using Manifold properties, there is no way to find usages of a field that still uses a normal getter.

public class Foo{
    @val String bar;
}

screenshot 47
Using Find Usages does not include something like this: String bar = new Foo().getBar();


Lombok adds the generated getters/setters to the Structure view. This might be a more intuitive way? (It also makes it more clear whether the generated getter/setter is private/protected/...)

public class Foo {
    @Getter String bar;
}

screenshot 48

Metadata

Metadata

Assignees

No one assigned

    Labels

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions