abstract class EntityProperty<T : Entity<T>?> : SimpleObjectProperty<T?>
A Property representing an Entity
<init> |
EntityProperty()
A Property representing an Entity |
model |
abstract val model: ItemViewModel<T?>
An Entity model representing the inherited Entity. By Contract every Entity has one. |
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 |