class UuidInsertAction : DataInsertAction
Inserts random type 4 UUID.
scheme
- the scheme to use for generating UUIDs
class ArrayAction : DataInsertArrayAction
Inserts an array-like string of UUIDs. |
|
class RepeatAction : DataInsertRepeatAction
Inserts repeated random UUIDs. |
|
class RepeatArrayAction : DataInsertRepeatArrayAction
Inserts repeated array-like strings of UUIDs. |
UuidInsertAction(scheme: UuidScheme = UuidSettings.default.currentScheme)
Inserts random type 4 UUID. |
val name: String
The name of the action to display. |
var random: Random
The random generator used to generate random values. |
fun generateStrings(count: Int): List<String>
Returns random type 4 UUIDs. |
open fun actionPerformed(event: AnActionEvent): Unit
Inserts the data generated by generateStrings at the caret(s) in the editor; one datum for each caret. |
|
fun generateString(): String
Generates a random datum. |
|
open fun update(event: AnActionEvent): Unit
Sets the title of this action and disables this action if no editor is currently opened. |