[operations] [attributes] [fields] [template] [definition]
[implementation] [documentation]
To use the search tool you need to use a browser which supports JAVA (c)

[next] [prev] [superclass] [next peer] [prev peer] [subclass] [index] [hierarchy]

FilingReceiverWithCRC

inherits from Object
inherits from InstallReceiverProxy

Object <- FilingReceiverWithCRC



Operations

Get list of all operations

FindReceiverFromCRC
InstallInto


Attributes

Get list of all attributes

Class FilingReceiverWithCRC defines no new attributes.


Fields

Field Type
FilingReceiverWithCRC: receiverTray: FolderTray
crc: Unsigned


Instance template

instance FilingReceiverWithCRC tag;
   receiverTray: nilObject;
            crc: 0;
end instance;

Class definition

Define Class FilingReceiverWithCRC;
    inherits from Object;
    inherits from InstallReceiverProxy;

    field receiverTray: FolderTray, weak;
        // object to install into
    field crc: Unsigned;
        // CRC to figure out more precisely how the object should be installed.

    operation FindReceiverFromCRC() : StackOfCards;
        // returns the stack that the CRC leads to.

    overrides InstallInto;
        // installing an object into this filing receiver is
        // equivalent to calling InstallInto on the stack that
        // is returned by FindReceiverFromCRC.
end class;