What is empty tag?
No Answer is Posted For this Question
Be the First to Post Answer
Define connection pooling?
What spring is in related to j2ee?
How to call main class with in main class?
What is java actionlistener?
What is javamail?
Write a program to display numeric value in reverse order. Ex: I have given a number like 7584, It should display in reverse order like 4857.
What is Document Object Model?
What is a j2ee module?
What is group?
What is j2ee product provider?
What are the modules of j2ee?
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 ?