What is distributed application?
895
What are the component of java?
818
What is commit?
1001
What is j2ee component?
974
public class ActionSearchBean extends
GenericSearchBean {
@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 ?
2432
What is j2ee server?
969
What are the tools in java?
807
Difference between load and get method?
920
Why frameworks are used in java?
851
What is java ee used for?
784
Why java is interpreted language?
792
Explain the j2ee tiers.
814
What are the main components of the j2ee application?
855
What is basic authentication?
940
What is context root?
905