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

ListEntry

inherits from Text

Object <- Text <- ListEntry



Operations

Get list of all operations

ColumnText
ReplaceFieldAt


Attributes

Get list of all attributes

Checked
FirstColumnText
HasCheckbox
PrefixImage
SecondColumnText
ShowPrefixImage


Fields

Field Type
ListEntry: checked: Boolean
hasCheckbox: Boolean
showPrefixImage: Boolean


Instance template

instance ListEntry tag;
        checked: false;
    hasCheckbox: false;
showPrefixImage: false;
end instance;

Class definition

Define Class ListEntry;
    inherits from Text;

    field checked:          Boolean, getter, setter;
    field hasCheckbox:      Boolean, getter, setter;
    field showPrefixImage:  Boolean, getter, setter;

    attribute Checked: Boolean;
    attribute HasCheckbox: Boolean;
    attribute ShowPrefixImage: Boolean;
    attribute FirstColumnText: Text, readOnly;
    attribute SecondColumnText: Text, readOnly;
    attribute PrefixImage: Image, readOnly;

    operation ColumnText(columnNumber: Unsigned): Text;

    operation ReplaceFieldAt(columnNumber: Unsigned; text: HasText);
end class;