LaunchAction

class LaunchAction(val path: String?, subActions: List<Action> = emptyList()) : Action

Represents an action to launch an external application or file.

Constructors

Link copied to clipboard
constructor(path: String?, subActions: List<Action> = emptyList())

Properties

Link copied to clipboard
val path: String?

The path to the application or file to launch, or null if not specified.

Link copied to clipboard
open override val type: ActionType

Returns type of action to make down-casting easier.

Functions

Link copied to clipboard
open operator override fun equals(other: Any?): Boolean

Compares this launch action to the specified object for equality.

Link copied to clipboard
open override fun hashCode(): Int

Returns a hash code value for this launch action.

Link copied to clipboard
open override fun toString(): String

Returns a string representation of this launch action for debugging purposes.