jvmCommonMain.earth.worldwind.layer.atak.ATAKMetadata.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of worldwind-jvm Show documentation
Show all versions of worldwind-jvm Show documentation
The WorldWind Kotlin SDK (WWK) includes the library, examples and tutorials for building multiplatform 3D virtual globe applications for Android, Web and Java.
The newest version!
package earth.worldwind.layer.atak
import com.j256.ormlite.field.DataType
import com.j256.ormlite.field.DatabaseField
import com.j256.ormlite.table.DatabaseTable
import earth.worldwind.layer.atak.ATAKMetadata.Companion.TABLE_NAME
@DatabaseTable(tableName = TABLE_NAME)
class ATAKMetadata {
@DatabaseField(columnName = KEY, dataType = DataType.STRING, id = true)
var key: String? = null
@DatabaseField(columnName = VALUE, dataType = DataType.STRING)
var value: String? = null
companion object {
const val TABLE_NAME = "ATAK_metadata"
const val KEY = "key"
const val VALUE = "value"
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy