我已经定义了具有多种方法的A类.然后我有另一个类,即JSF的托管bean.在bean中我创建了一个A类实例,但后来我无法调用A类中的任何方法.所有字段都是公共的,方法范围也是公共的.
我认为这可能是因为bean的性质(虽然它不应该)所以我创建了另一个类Tester.java并创建了实例,并且没问题.但是当我尝试调用这些方法时,Netbeans中的建议列表中没有显示任何内容.到底是怎么回事?
谢谢,
编辑:代码:
public class Reservation {
.... //setters & getters
public List getDateRange(DateTime start, DateTime end) {
......//body of method
}
public TreeMap getDatesTreeMap(){
//body of method
}
public boolean checkRange() {
... body of method
}
}//end of class - no errors
然后这就是类实例化的方式:
Reservation booking = new Reservation();
booking. ????? this is where the suggestions don't come up
谢谢