Package edu.wpi.grip.core.events
Class ConnectionAddedEvent
- java.lang.Object
-
- edu.wpi.grip.core.events.ConnectionAddedEvent
-
- All Implemented Interfaces:
DirtiesSaveEvent
,LoggableEvent
,RunPipelineEvent
public class ConnectionAddedEvent extends java.lang.Object implements RunPipelineEvent, DirtiesSaveEvent, LoggableEvent
An event that occurs when a new connection is added to the pipeline. This is triggered by the user adding a connection with the GUI.
-
-
Constructor Summary
Constructors Constructor Description ConnectionAddedEvent(Connection connection)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description Connection
getConnection()
java.lang.String
toString()
-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
-
Methods inherited from interface edu.wpi.grip.core.events.DirtiesSaveEvent
doesDirtySave
-
Methods inherited from interface edu.wpi.grip.core.events.LoggableEvent
asLoggableString, logLevel
-
Methods inherited from interface edu.wpi.grip.core.events.RunPipelineEvent
pipelineShouldRun
-
-
-
-
Constructor Detail
-
ConnectionAddedEvent
public ConnectionAddedEvent(Connection connection)
- Parameters:
connection
- The connection being added.
-
-
Method Detail
-
getConnection
public Connection getConnection()
- Returns:
- The connection being added.
-
toString
public java.lang.String toString()
- Overrides:
toString
in classjava.lang.Object
-
-