comparison src/name/blackcap/clipman/Pasteboard.kt @ 27:8aa2dfac27eb

Big reorg; compiled but untested.
author David Barts <n5jrn@me.com>
date Wed, 29 Jan 2020 10:50:07 -0800
parents 96cc73ae2904
children 0c6c18a733b7
comparison
equal deleted inserted replaced
26:ff35fabaea3a 27:8aa2dfac27eb
18 import java.util.logging.Logger 18 import java.util.logging.Logger
19 import kotlin.collections.HashMap 19 import kotlin.collections.HashMap
20 20
21 /* Constants, etc. */ 21 /* Constants, etc. */
22 val CHARSET_NAME = "UTF-8" 22 val CHARSET_NAME = "UTF-8"
23
24 /*
25 * Represents an error dealing with pasteboard items.
26 */
27 class PasteboardError(): Exception()
28 23
29 /** 24 /**
30 * Represents an item of data in the clipboard and how to read and 25 * Represents an item of data in the clipboard and how to read and
31 * write it. 26 * write it.
32 */ 27 */