All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.eg.agent.android.api.v1.ConnectionEvent Maven / Gradle / Ivy

There is a newer version: 2.1.3
Show newest version
 package com.eg.agent.android.api.v1;

 import com.eg.agent.android.api.common.ConnectionState;

 import java.util.EventObject;

 public final class ConnectionEvent extends EventObject
 {
   private static final long serialVersionUID = 1L;
   private final ConnectionState connectionState;

   public ConnectionEvent(Object source)
   {
     this(source, null);
   }

   public ConnectionEvent(Object source, ConnectionState connectionState) {
       super(source);
       this.connectionState = connectionState;
   }

   public ConnectionState getConnectionState() {
       return this.connectionState;
   }
 }


/* Location:              D:\Android_Agent\AndroidInstrumentation\SampleApp_RE_code\NewRelic_Android_Agent_5.8.3\newrelic-android-5.8.3\lib\newrelic.android.jar!\com\newrelic\agent\android\api\v1\ConnectionEvent.class
 * Java compiler version: 6 (50.0)
 * JD-Core Version:       0.7.1
 */




© 2015 - 2025 Weber Informatics LLC | Privacy Policy