[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]

BuiltInStorage

inherits from MemoryDevice

Object <- MemoryDevice <- BuiltInStorage



Operations

Get list of all operations

AnnounceOutOfMemory
AttemptMemoryRecoveryIn
HandlePendingLowOnMemory
HandlePendingOutOfMemory
PreflightAnnouncement


Attributes

Get list of all attributes

Image
TotalFreeBytes
TotalSize
WriteProtected


Fields

Field Type
ContainerDevice: shelf: Viewable
containsNewObjects: Boolean
writeable: Boolean
HasDate: dateCreated: Signed
timeCreated: Unsigned
dateModified: Signed
timeModified: Unsigned
MemoryDevice: volumeRosterAddress: Pointer


Instance template

instance BuiltInStorage tag;
          shelf: nilObject;
containsNewObjects: false;
      writeable: false;
    dateCreated: 0;
    timeCreated: 0;
   dateModified: 0;
   timeModified: 0;
volumeRosterAddress: nil;
end instance;

Class definition

#endif
Define Class BuiltInStorage;
    inherits from MemoryDevice;
    
    // free memory values
    overrides TotalFreeBytes, TotalSize;
    
    // low and out of memory handling
    overrides HandlePendingOutOfMemory, HandlePendingLowOnMemory;
    overrides AttemptMemoryRecoveryIn;
    overrides AnnounceOutOfMemory;
    
    overrides Image;
    overrides WriteProtected;
    overrides PreflightAnnouncement;
end class;