What is a j2ee container?
No Answer is Posted For this Question
Be the First to Post Answer
What software is needed for java programming?
What is actionform?
can someone tell me how does preparedstatement works? its an interface and where is the implementation?
What are the differences between Ear, Jar and War files? Under what circumstances should we use each one?
Which package is imported by default in java?
What is j2ee technology?
What is actionerrors?
What is deployment descriptor?
What is japplet in java?
Why is j2ee needed?
Explain about J2EE Application Architecture
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 ?