MouseEventMatcher

data class MouseEventMatcher(type: MouseEventType?, button: Int?, position: Position?)

Types

Companion
Link copied to clipboard
common
object Companion

Functions

component1
Link copied to clipboard
common
operator fun component1(): MouseEventType?
component2
Link copied to clipboard
common
operator fun component2(): Int?
component3
Link copied to clipboard
common
operator fun component3(): Position?
copy
Link copied to clipboard
common
fun copy(type: MouseEventType? = null, button: Int? = null, position: Position? = null): MouseEventMatcher
equals
Link copied to clipboard
common
open operator override fun equals(other: Any?): Boolean
hashCode
Link copied to clipboard
common
open override fun hashCode(): Int
matches
Link copied to clipboard
common
fun matches(event: MouseEvent): Boolean
toString
Link copied to clipboard
common
open override fun toString(): String

Properties

button
Link copied to clipboard
common
val button: Int? = null
position
Link copied to clipboard
common
val position: Position? = null
type
Link copied to clipboard
common
val type: MouseEventType? = null

Sources

(source)
Link copied to clipboard