What do you mean by the deployment descriptor?
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 ?
Which one should we prefer while using bean ? managed bean annotation or faces-config
Describe the file types *.ear, * .jar and *.war?
What is delegation?
What is application client module?
What is use of final keyword in java?
Describe orm?
What is java api for xml processing (jaxp)?
I Want build and release interview questions
How to call main class with in main class?
Is core java and j2se same?
How to create object without using the keyword “new” in java?