InterviewSolution
| 1. |
How We Can Achive Inheritance In Atg Repository Level? |
|
Answer» sub-type-property=”type” SUPER-type=”super item” Ex : <item-descriptor name=”shippingGroup” sub-type-property=”type” /> <item-descriptor name=”hardgoodShippingGroup” super-type=”shippingGroup” /> Here hardgoodShippingGroup is the SUBITEM(LIKE CLASS) shippingGroup is the super Item(class) Hence all the features/properties of shippingGroup we can get it in hardgoodShippingGroup item also. sub-type-property=”type” super-type=”super item” Ex : <item-descriptor name=”shippingGroup” sub-type-property=”type” /> <item-descriptor name=”hardgoodShippingGroup” super-type=”shippingGroup” /> Here hardgoodShippingGroup is the subitem(like class) shippingGroup is the super Item(class) Hence all the features/properties of shippingGroup we can get it in hardgoodShippingGroup item also. |
|