How does javac compiler work?
No Answer is Posted For this Question
Be the First to Post Answer
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 java developer?
What is java web technologies?
Why frameworks are used in java?
What is j2ee and j2se?
What is the build file?
What are java front end tools?
What is jbutton in java?
Why primitive data types in java are not objects?
What is application component provider?
What are the four types of J2EE modules?
What is B2B?