Here is the patch I promised to make to BasicRenderer.java that is
related to CodeGenerator tool. This patch provides boolean getters eg.:

    public boolean isSomething() {
        return this.something;
    }

Instead of:

    public boolean getSomething() {
        return this.something;
    }

Just a quick patch, and as someone noted the CodeGenerator should be
rewritten so that it takes advantage of common mapping file parsing
routine to keep utility in sync with Hibernate.

Note: This patch does not include one-to-one mapping support, just the
boolean getter support.

Regards
Aapo Laakkonen

Attachment: BasicRenderer.java.patch
Description: Binary data

Attachment: BasicRenderer.java.old
Description: Binary data

Attachment: BasicRenderer.java.new
Description: Binary data

Reply via email to