Book a Demo

Author Topic: Code Template Editor  (Read 1927 times)

Chris@Greenheck

  • EA Novice
  • *
  • Posts: 1
  • Karma: +0/-0
    • View Profile
Code Template Editor
« on: March 12, 2011, 03:14:15 am »
Hi,

I'm new to Enterprise Architect. I'd like to use the Tool to generate our Source code from the UML Model.
I'm struggling a little bit with the generated Code.
My problem: I'd like the Curly Braces in the new line.

I was able to accomplish this for the Constructor, Methods, etc.

But, I'm not able to figure out how th do this for the properties of my classes. No matter what I do, they always look like this:

Code: [Select]
public string Property{
      get{
            return Property;
      }
      set{
            Property= value;
      }
}

Which Template needs to be changed?

I'm thankful for every adivce.