What is distributed application?
No Answer is Posted For this Question
Be the First to Post Answer
What is 2 stands for in j2ee?
What should a junior java developer know?
What is java ee architecture?
What is difference between java and core?
What is actionerrors?
How will you explain load() and get() methods?
What are defined as web components?
What are the different types of events in java?
What is j2ee stack?
Explain the four types of container that the j2ee specification defines
What is enterprise information system resource?
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 ?