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;
}

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;
}
