class DummyInsertAction : DataInsertAction
Inserts a dummy value.
Mostly for testing and demonstration purposes.
DummyInsertAction(dummyValue: String)
Inserts a dummy value. |
val dummyValue: String
the dummy value that is inserted |
|
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>
Generates random data. |
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. |