bundleintf/src/Bundle.i3


Copyright (C) 1994, Digital Equipment Corp.
 This interface is part of the m3bundle facility. See the manpage 
   for m3bundle for details. 

INTERFACE Bundle;

TYPE T <: REFANY;

PROCEDURE Get (bundle: T; element: TEXT): TEXT;
If an element namemd element was bundled into bundle, then return the contents of element as a TEXT. Otherwise, return NIL.
********* UNIMPLEMENTED *********
PROCEDURE Elts (bundle: T): REF ARRAY OF TEXT;
Returns a list of elements that are bundled into bundle.

END Bundle.