YggDID.mesa
Copyright Ó 1988 by Xerox Corporation. All rights reserved.
Bob Hagmann April 4, 1988 10:23:32 am PDT
Definition of the document identifier (DID)
DIRECTORY
YggDummyFile USING [Handle];
YggDID: CEDAR DEFINITIONS
~ BEGIN
Types
DID: TYPE ~ REF DIDRep;
DIDRep: TYPE;
document identifier (DID)
Procedures
FilesForDID: PROC [DID] RETURNS [contents, attributes, links: YggDummyFile.Handle];
Get the file objects for the DID. Any or all of these objects may be NIL. For objects with few links, the links are stored in the attributes. For objects with small contents, the contents are stored in the attributes. If there are no attributes, there is no file for them.
END.