toggle menu
kweb-core
1.4.12
jvm
switch theme
search in API
kweb-core
/
kweb.state
/
ObservableList
/
Modification
Modification
sealed
class
Modification
<
ITEM
>
(
source
)
Inheritors
Insertion
Change
Move
Deletion
Members
Types
Change
Link copied to clipboard
class
Change
<
ITEM
>
(
val
position
:
Int
,
val
newItem
:
ITEM
)
:
ObservableList.Modification
<
ITEM
>
Deletion
Link copied to clipboard
class
Deletion
<
ITEM
>
(
val
position
:
Int
)
:
ObservableList.Modification
<
ITEM
>
Insertion
Link copied to clipboard
class
Insertion
<
ITEM
>
(
val
position
:
Int
,
val
item
:
ITEM
)
:
ObservableList.Modification
<
ITEM
>
Move
Link copied to clipboard
class
Move
<
ITEM
>
(
val
oldPosition
:
Int
,
val
newPosition
:
Int
)
:
ObservableList.Modification
<
ITEM
>