Re: public abstract Boolean isQuery()

2007-03-13 Thread Jesse Kuhnert
that looked like the following: @Persist public abstract Boolean isQuery(); The above code gives me an error, 'no implementation in class', and it took me a while but I finally figured the problem that the enhanced class was not identifying the Boolean. It took a while longer for me t

Re: public abstract Boolean isQuery()

2007-03-13 Thread Steve Shucker
big-B Boolean uses get/set little-b boolean uses is/set you need one of public abstract Boolean getQuery() public abstract Boolean getIsQuery() public abstract boolean isQuery() -Steve Murray Collingwood wrote: Hi all Just trying to clarify my understanding. I had some code that looked like

Re: public abstract Boolean isQuery()

2007-03-13 Thread Patrick Klein
fy my understanding. I had some code that looked like the following: @Persist public abstract Boolean isQuery(); The above code gives me an error, 'no implementation in class', and it took me a while but I finally figured the problem that the enhanced class was not identifying the Bool

public abstract Boolean isQuery()

2007-03-13 Thread Murray Collingwood
Hi all Just trying to clarify my understanding. I had some code that looked like the following: @Persist public abstract Boolean isQuery(); The above code gives me an error, 'no implementation in class', and it took me a while but I finally figured the problem that the enhanced cla