What are the java backend technologies?
No Answer is Posted For this Question
Be the First to Post Answer
What is declaration?
What is the use of method saveorupdate()?
What is cmp in j2ee?
What is difference between java and core?
What are the j2ee client types?
What are the differences between Ear, Jar and War files? Under what circumstances should we use each one?
Diffrence between arraylist and hashmap
Define connection pooling?
How do I become a java developer?
How many types of component events are 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 conversational state?