/// /// HybridNitroImageViewSpec.kt /// This file was generated by nitrogen. DO NOT MODIFY THIS FILE. /// https://github.com/mrousavy/nitro /// Copyright © Marc Rousavy @ Margelo /// package com.margelo.nitro.image import androidx.annotation.Keep import com.facebook.jni.HybridData import com.facebook.proguard.annotations.DoNotStrip import com.margelo.nitro.core.HybridObject import com.margelo.nitro.views.HybridView /** * A Kotlin class representing the NitroImageView HybridObject. * Implement this abstract class to create Kotlin-based instances of NitroImageView. */ @DoNotStrip @Keep @Suppress( "KotlinJniMissingFunction", "unused", "RedundantSuppression", "RedundantUnitReturnType", "SimpleRedundantLet", "LocalVariableName", "PropertyName", "PrivatePropertyName", "FunctionName" ) abstract class HybridNitroImageViewSpec: HybridView() { // Properties @get:DoNotStrip @get:Keep @set:DoNotStrip @set:Keep abstract var image: Variant_HybridImageSpec_HybridImageLoaderSpec? @get:DoNotStrip @get:Keep @set:DoNotStrip @set:Keep abstract var resizeMode: ResizeMode? @get:DoNotStrip @get:Keep @set:DoNotStrip @set:Keep abstract var recyclingKey: String? // Methods // Default implementation of `HybridObject.toString()` override fun toString(): String { return "[HybridObject NitroImageView]" } // C++ backing class @DoNotStrip @Keep protected open class CxxPart(javaPart: HybridNitroImageViewSpec): HybridObject.CxxPart(javaPart) { // C++ JHybridNitroImageViewSpec::CxxPart::initHybrid(...) external override fun initHybrid(): HybridData } override fun createCxxPart(): CxxPart { return CxxPart(this) } companion object { protected const val TAG = "HybridNitroImageViewSpec" } }