Http://www.learndiary.com/tag/IDE
You have tried both eclipse (2. * and 3. *). If you use eclipse to automatically generate the getter and setter methods for the selected attributes, the boolean type cannot start with "is. See the following
The getter and setter automatically generated by Boolean B and Boolean ISB are:
Public Boolean ISB (){ Return B; } Public void SETB (Boolean B ){ This. B = B; } |
|
The following interviews automatically generate the getter and setter methods for multiple types of data in eclipse. The method is to select the attributes of the getter and setter to be generated with the mouse, and then select: source-> Generate getters and setters... :
Public class t { Private int ISI; Private string ISS; Private Boolean B; // Private Boolean ISB; Private Boolean isbool; Public Boolean ISB (){ Return B; } Public void SETB (Boolean B ){ This. B = B; } Public Boolean getisbool (){ Return isbool; } Public void setisbool (Boolean isbool ){ This. isbool = isbool; } Public int getisi (){ Return ISI; } Public void setisi (int isi ){ This. ISI = ISI; } Public String getiss (){ Return ISS; } Public void setiss (string ISS ){ This. ISS = ISS; } } |
|