<> <> <> <> <> <> DIRECTORY DB: TYPE USING[ Entity, Segment ], ViewerClasses: TYPE USING[ Viewer ], VTables: TYPE USING[ VTable ]; NoteEditor: DEFINITIONS = BEGIN OPEN DB, ViewerClasses, VTables; DisplayNote: PROC[ entity: Entity, parent: Viewer, segment: DB.Segment _ NIL, openHeight: NAT _ 0, openWidth: NAT _ 0, noEdits: BOOLEAN _ FALSE ] RETURNS[VTable]; <> <> SaveNote: PROC[ newEntity: Entity, viewer: Viewer, update: BOOLEAN _ FALSE ]; <> <> <> <> END.