Property Type Adapter
interface PropertyTypeAdapter<T : Property<out Any>?> : JsonSerializer<T> , JsonDeserializer<T>
Content copied to clipboard
This interface lets implement classes for JavaFX custom property serialization.
Parameters
<T>
the Property type
Functions
Link copied to clipboard
abstract fun deserialize(json: JsonElement, typeOfT: Type, context: JsonDeserializationContext): T
Content copied to clipboard