show/hide this revision's text 2 deleted 8 characters in body

In the Java language even the users some methods must be named (at least partially) using the English language because of the JavaBeans convention.

This convention requires that a property X be established via a pair of getX() and setX() methods. Here in French-Canada, where workers some developers are legally obliged to work code in the French language (in enterprises over a certain size) this leads to the following messtravesty:

interface Foo {

  Color getCouleur();

  void setCouleur(Color couleur);
}
show/hide this revision's text 1

In the Java language even the users methods must be named (at least partially) using the English language because of the JavaBeans convention.

This convention requires that a property X be established via a pair of getX() and setX() methods. Here in French-Canada, where workers are legally obliged to work in the French language (in enterprises over a certain size) this leads to the following mess:

interface Foo {

  Color getCouleur();

  void setCouleur(Color couleur);
}