Package edu.wpi.grip.core.events
Class OperationAddedEvent
- java.lang.Object
-
- edu.wpi.grip.core.events.OperationAddedEvent
-
public class OperationAddedEvent extends java.lang.Object
Event for when a new operation is added to the application. This happens, for example, if a user loads a new Python script, or at startup for the built-in operations. This is NOT the event for adding a new step to the pipeline.
-
-
Constructor Summary
Constructors Constructor Description OperationAddedEvent(OperationMetaData operation)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description OperationMetaData
getOperation()
java.lang.String
toString()
-
-
-
Constructor Detail
-
OperationAddedEvent
public OperationAddedEvent(OperationMetaData operation)
- Parameters:
operation
- The operation being added.
-
-
Method Detail
-
getOperation
public OperationMetaData getOperation()
- Returns:
- The operation being added.
-
toString
public java.lang.String toString()
- Overrides:
toString
in classjava.lang.Object
-
-