What is comment?
No Answer is Posted For this Question
Be the First to Post Answer
What is empty tag?
What is callback methods?
How many types of constructors are there in java?
What is application configuration resource file?
What is container-managed transaction?
What is a java applet?
What is basic authentication?
What is j2ee technology?
Describe the ear, war, and jar.
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 difference between java and core?
Hi friends, can u explain Transparent Persistence in hibernate with sample code.