[
Date Prev][
Date Next][
Thread Prev][
Thread Next][
Date Index][
Thread Index]
[
List Home]
| [wtp-dev] [Bug 106996]  New: defining getter and setter | 
https://bugs.eclipse.org/bugs/show_bug.cgi?id=106996
           Summary: defining getter and setter
           Product: Web Tools
           Version: 0.7
          Platform: PC
        OS/Version: Windows 2000
            Status: NEW
          Severity: major
          Priority: P3
         Component: J2EE Standard Tools
        AssignedTo: wtp-dev@xxxxxxxxxxx
        ReportedBy: mnrz57@xxxxxxxxx
I use Hibernate and struts in my web application.
I have a bean class named "Congress"
class Congress{
  
  private String qAndAnswer;
  public void setQAndAnswer(String _qAndAnswer){
     //....
  }
  public String getQAndAnswer(){
     //....
  }
}
the problem is that getter/setter not recognized in Eclipse in my application
but when I change the name from "qAndAnswer" to "qandAnswer" the problem solved.
but I have some field name like this and I must to rename them.
thank you in advance.
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.