Is java is a technology?
No Answer is Posted For this Question
Be the First to Post Answer
What is j2ee specification?
Is java still slow?
What is tomcat in j2ee?
What is webservices in java?
What is the preferred size of a component in java?
What are the main components of a class in java?
What is awt package in java?
What is the build file?
What is use of final keyword in java?
What are the components of the java platform?
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 create method?