Class RemoteConnectionChangeEvent

java.lang.Object
org.eclipse.remote.core.RemoteConnectionChangeEvent

public class RemoteConnectionChangeEvent extends Object
Event representing a change in connection status. The getType() method can be used to obtain information about the type of event that occurred.
Since:
2.0
  • Field Details

    • CONNECTION_CLOSED

      public static final int CONNECTION_CLOSED
      Event indicating that the connection was closed.
      See Also:
    • CONNECTION_OPENED

      public static final int CONNECTION_OPENED
      Event indicating that the connection was opened.
      See Also:
    • CONNECTION_ABORTED

      public static final int CONNECTION_ABORTED
      Event indicating that the connection was closed abnormally.
      See Also:
    • CONNECTION_RENAMED

      public static final int CONNECTION_RENAMED
      Event indicating that the connection name will be changed. It is sent prior to the name change taking place. The event passes an IRemoteConnectionWorkingCopy so that the original and new name can be used by the listener.
      See Also:
    • CONNECTION_ADDED

      public static final int CONNECTION_ADDED
      Event indicating the connection was added.
      Since:
      2.0
      See Also:
    • CONNECTION_REMOVED

      public static final int CONNECTION_REMOVED
      Event indicating the connection is about to be removed.
      Since:
      2.0
      See Also:
    • ATTRIBUTES_CHANGED

      public static final int ATTRIBUTES_CHANGED
      Event indicating the connection attributes had changed.
      Since:
      4.0
      See Also:
  • Constructor Details

    • RemoteConnectionChangeEvent

      public RemoteConnectionChangeEvent(IRemoteConnection connection, int type)
  • Method Details