public class ActionSearchBean extends
GenericSearchBean<ActionDTO, Long,
ActionDTO> {
@Override
public String search() {
data.setRowCount(null);
if(data.getRowCount()==0){
data.getNoRecordFound().setRendered(true);
data.getDataScroller().setRendered(false);
}
return "searchAction";
}
@Override
public String clear() {
data.setRowCount(null);
if (data.getRowCount() > 0){
data.getNoRecordFound().setRendered(false);
data.getDataScroller().setRendered(true);
}else{
data.getNoRecordFound().setRendered(true);
data.getDataScroller().setRendered(false);
}
data.setModel(new ActionDTO());
data.setRowCount(null);
return "searchAction";
}
}
what is the purpose of @Override ...what will do @Override
here ?
No Answer is Posted For this Question
Be the First to Post Answer
Why primitive data types in java are not objects?
What are the component of java?
What is ejb container provider?
What is repaint in java?
Is tomcat a java ee?
What is architecture neutral in java?
What is group?
What is data?
What is jbutton in java?
What is enterprise information system resource?
What will happen when you compile and run the following code?
What is difference between javac and java?