Netbeans generate getter and setter

1k Views Asked by At

I've got some trouble with the Netbeans IDE. Please help me. When I'm coding in Java, when I want to generate getters and setters automatically, Netbeans generates these methods with Turkish characters (replaces the english i with 'ı'), e.g. voıd or ınt and publıc. How can I fix that problem? Here is part of my trouble:

public ınt getAge() {
    return age
}

publıc voıd setAge(ınt age) {
    this.age = age;
}

My Netbeans version is 7.4.

0

There are 0 best solutions below