note description: "Root Class" class ESTORE_ROOT Creation make feature -- Initialization make -- Initialize local li: LINKED_LIST[] s1,s2: STRING do io.put_string("%NConnecting with username '', password '' and data source ''...") Create estore_example.initialize("","","") io.put_string("%NProcessing Request ...") io.put_string("%NQuery:") li := estore_example. if li.count>0 then io.put_string("%NThere are "+li.count.out+" found items.") io.put_string(li.first.out) else io.put_string("%NNo items found") end end feature -- Access estore_example: ESTORE_EXAMPLE -- Example reference end