What are the different types of events in java?
No Answer is Posted For this Question
Be the First to Post Answer
What is advance java?
What is a panel java?
How will you explain load() and get() methods?
Define connection pooling?
What is the latest technology used in java?
What is initialization parameter?
Is string an object in java?
What is devops in java?
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 is mean by j2ee?
Why is java called technology?
is it possible to create single instance of java class per session in web application