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

DataList

inherits from FixedList

Object <- FixedList <- DataList



Operations

Get list of all operations

Init


Attributes

Get list of all attributes

InitialListWordFormat


Fields

Field Type
DataList: stride: Unsigned


Instance template

instance DataList tag;
         stride: 0;
end instance;

Class definition

Define Class DataList;
    inherits from FixedList;
    uses extra list;

    field stride: Unsigned, getter;

    overrides Init;
        // allows caller to set the stride when creating 
        // if the caller does not set the stride it defaults to 1

    overrides InitialListWordFormat;
        // overriden to mark the extra data as unstructured
end class;