Support feedback:
Hmm... It seems Hibernate support in IDEA 7.0.3 actually declined in quality. These errors did not happen before.
Let's say I have an a BaseEntity class mapped as @MappedSuperclass and @AccessType("property").
I see two errors:
1. It has an abstract method:
public abstract Serializable getId();
This guy is flagged with error: 'property based access must have a setter method.'. Well, it is an 'abstract' method, I probably should be excluded from this inspection.
2. I have a getter method that is marked @AccessType("field") and no setter method for it. IDEA flags it as needing a setter method. It should not do it, if Hibernate annotation @AccessType("field") is present.
Please address these issues.