Package edu.wpi.grip.core.events
Class ConnectionRemovedEvent
- java.lang.Object
-
- edu.wpi.grip.core.events.ConnectionRemovedEvent
-
- All Implemented Interfaces:
DirtiesSaveEvent
,LoggableEvent
public class ConnectionRemovedEvent extends java.lang.Object implements DirtiesSaveEvent, LoggableEvent
An event that occurs when a connection is removed from the pipeline. This is triggered by the user deleting a connection with the GUI.
-
-
Constructor Summary
Constructors Constructor Description ConnectionRemovedEvent(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
-
-
-
-
Constructor Detail
-
ConnectionRemovedEvent
public ConnectionRemovedEvent(Connection<?> connection)
- Parameters:
connection
- The connection being deleted.
-
-
Method Detail
-
getConnection
public Connection<?> getConnection()
- Returns:
- The connection being deleted.
-
toString
public java.lang.String toString()
- Overrides:
toString
in classjava.lang.Object
-
-