In eclipse, Boolean variables in JavaBean should not start with "is"

Source: Internet
Author: User

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;

}

}

 

Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.