Hi,
As a new EA user, before I raise a series of bug reports I'd like to check if I'm doing something wrong! I'm using EA version 7.0.817.
We've noticed some oddities when generating Java code from a model, and are having to manually correct the code after generation. If we could resolve these it would help greatly.

Our UML model is pretty simple and contains classes with public properties and associations. I would like to auto-generate Java POJO code from this model, adhering to the usual JavaBean conventions.
1. Boolean properties - I have selected "Use is for boolean property get" but am still getting methods generated that are called "getXxx", not "isXxx".
2. Properties - I have selected "Capitalized Attribute Name for Properties", but some of our properties are being generated with an initial lower case, e.g. "getname" not "getName". Haven't found a pattern yet on when it works and when it doesn't.
3. Associations - Whereas a public property becomes a private attribute with public getter and setter methods using the Java Transformation, associations only generate getter and setter methods in the Java Model. When we then generate code we get the getter and setter methods, and a private member variable prefixed with "m_". I'd like associations to generate exactly the same code as properties, without the "m_".
Cheers,
Chris