KotlinTrader / com.doubleu.kotlintrader.data / Data / EntityProperty

EntityProperty

abstract class EntityProperty<T : Entity<T>?> : SimpleObjectProperty<T?>

A Property representing an Entity

Constructors

<init> EntityProperty()

A Property representing an Entity

Properties

model abstract val model: ItemViewModel<T?>

An Entity model representing the inherited Entity. By Contract every Entity has one.

Inheritors

MasterUser object MasterUser : EntityProperty<Trader>

Represents the current MasterUser, may be null

Ort object Ort : EntityProperty<Ort>

Represents the current Ort, may be null

Schiff object Schiff : EntityProperty<Schiff>

Represents the current Schiff, may be null

User object User : EntityProperty<Trader>

Represents the current user, may be null