What is button in java?
No Answer is Posted For this Question
Be the First to Post Answer
What are java front end tools?
What do you understand by j2ee?
What is j2ee application model?
What is j2ee explain the component of j2ee application?
What is application configuration resource file?
What is pure java?
where our package shoud be kept in the application whenwe want to import that package in the jsp application?
when i m calling java for web browser . so browser it's not support. show error in browser: internal error occur. java.lang.NoClassDefFoundError. will you give me solution why it's not starting browser.? is there any consult with .net framework2.0?
What are the differences between Ear, Jar and War files? Under what circumstances should we use each one?
What is document root?
What is basic authentication?
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 ?