All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.likethesalad.tools.resource.api.android.modules.integer.IntegerAndroidResource.kt Maven / Gradle / Ivy

package com.likethesalad.tools.resource.api.android.modules.integer

import com.likethesalad.tools.resource.api.Resource
import com.likethesalad.tools.resource.api.android.BaseAndroidResource
import com.likethesalad.tools.resource.api.android.impl.AndroidResourceScope
import com.likethesalad.tools.resource.api.android.impl.AndroidResourceType
import com.likethesalad.tools.resource.api.attributes.AttributeKey

class IntegerAndroidResource : BaseAndroidResource {

    constructor(attributes: Map, value: Int, scope: AndroidResourceScope) : super(
        attributes,
        value,
        scope
    )

    constructor(name: String, value: Int, scope: AndroidResourceScope) : super(name, value, scope)

    override fun type(): Resource.Type = AndroidResourceType.IntegerType
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy