What is setbounds in java?
No Answer is Posted For this Question
Be the First to Post Answer
What is j2ee explain the component of j2ee application?
What is basic authentication?
What is conversational state?
Why do we use j2ee?
What is the difference between sendRedirect() and forward()? in what situations do we have to use send redirect() instead of forward().
13 Answers Honeywell, Mind Tree, Samsung, Wipro,
where our package shoud be kept in the application whenwe want to import that package in the jsp application?
what is Directory Structure of webapplication?
Are java primitives objects?
what is a servlet? and explain its lifecycle methods?
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 ?
Who gave the name java?
what is interface in java ?can you explain with simple example?and what is the difference between abstract and interface?