Jump to content

Does java editor 15.22 have some kind of config where you can change the default syntax for the uml class editor. in the uml editor you can give a class attributes and automatically create set and get functions, but I don't really like the syntax of the set functions, the get functions are exactly the same as I would do but the set function are not.

 

What I want:

public void set_name(String new_name) {
  this._name = new_name;
}

What I get:

public void set_name(String _nameNew) {
  _name = _nameNew;
}

 

Is it possible to tell the editor to generate the functions different?

 "Aeneas troianus est."

I'm allergic to social interaction in real life, don't talk to me in real life please.

don't forget to quote or tag (@marten.aap2.0) me when you reply!

Link to post
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now

×