| 123456789101112131415161718 |
- package technicalinformation;
- import baseclass.DataBeanCust;
- import p2.util.P2Exception;
- public class technicalinformationDataBean extends DataBeanCust {
- @Override
- public int TOGGLEDELETEROW() throws P2Exception {
- return super.TOGGLEDELETEROW();
- }
- public int ADDROWS() throws P2Exception {
- return 2;
- }
- }
|