Welcome to mirror list, hosted at ThFree Co, Russian Federation.

XSip.kt « property « vcard4android « bitfire « at « java « main « src - github.com/bitfireAT/vcard4android.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 30c5ad1ec17147ff9f42b388e984588d310505c1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
package at.bitfire.vcard4android.property

import android.net.Uri
import ezvcard.io.scribe.ImppScribe
import ezvcard.io.scribe.StringPropertyScribe
import ezvcard.io.scribe.UriPropertyScribe
import ezvcard.property.Impp
import ezvcard.property.TextProperty
import ezvcard.property.UriProperty

class XSip(value: String?): TextProperty(value) {

    object Scribe : StringPropertyScribe<XSip>(XSip::class.java, "X-SIP") {

        override fun _parseValue(value: String?) = XSip(value)

    }

}