wikibot
Type | OE.COMPOSITE_CATEGORY_TYP |
Source
CREATE OR REPLACE TYPE composite_category_typ
UNDER category_typ
(
subcategory_ref_list subcategory_ref_list_typ
, OVERRIDING MEMBER FUNCTION category_describe RETURN VARCHAR2
)
NOT FINAL;TYPE BODY composite_category_typ AS
OVERRIDING MEMBER FUNCTION category_describe RETURN VARCHAR2 IS
BEGIN
RETURN 'composite_category_typ';
END;
END;