What is B2B?
No Answer is Posted For this Question
Be the First to Post Answer
How many types of modules is defined by j2ee specification?
What does web module contain?
Difference between load and get method?
What is java ee technologies?
What is java application server?
What is enterprise information system?
What is application configuration resource file?
What is filter chain?
What is included in 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 ?
What are j2ee concepts?
Is java is a technology?