What is j2ee architecture?
No Answer is Posted For this Question
Be the First to Post Answer
What is repaint in java?
What is a j2ee component?
What is document root?
Why class is used in java?
What does j2ee stand for?
What are the four components of j2ee application?
What are j2ee technologies?
What is java transaction service (jts)?
What is the latest technology used in java?
What is javabeans component?
What is jta and jts?
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 ?