public class com.android.proxyhandler.ProxyService extends android.app.Service
  minor version: 0
  major version: 59
  flags: flags: (0x0021) ACC_PUBLIC, ACC_SUPER
  this_class: com.android.proxyhandler.ProxyService
  super_class: android.app.Service
{
  private static com.android.proxyhandler.ProxyServer server;
    descriptor: Lcom/android/proxyhandler/ProxyServer;
    flags: (0x000a) ACC_PRIVATE, ACC_STATIC

  public static final java.lang.String KEY_PROXY;
    descriptor: Ljava/lang/String;
    flags: (0x0019) ACC_PUBLIC, ACC_STATIC, ACC_FINAL
    ConstantValue: "keyProxy"

  public static final java.lang.String HOST;
    descriptor: Ljava/lang/String;
    flags: (0x0019) ACC_PUBLIC, ACC_STATIC, ACC_FINAL
    ConstantValue: "localhost"

  public static final java.lang.String EXCL_LIST;
    descriptor: Ljava/lang/String;
    flags: (0x0019) ACC_PUBLIC, ACC_STATIC, ACC_FINAL
    ConstantValue: ""

  static void <clinit>();
    descriptor: ()V
    flags: (0x0008) ACC_STATIC
    Code:
      stack=1, locals=0, args_size=0
         0: .line 31
            aconst_null
            putstatic com.android.proxyhandler.ProxyService.server:Lcom/android/proxyhandler/ProxyServer;
         1: .line 36
            return
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public void <init>();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // com.android.proxyhandler.ProxyService this
         0: .line 29
            aload 0 /* this */
            invokespecial android.app.Service.<init>:()V
            return
        end local 0 // com.android.proxyhandler.ProxyService this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lcom/android/proxyhandler/ProxyService;

  public void onCreate();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // com.android.proxyhandler.ProxyService this
         0: .line 40
            aload 0 /* this */
            invokespecial android.app.Service.onCreate:()V
         1: .line 41
            getstatic com.android.proxyhandler.ProxyService.server:Lcom/android/proxyhandler/ProxyServer;
            ifnonnull 4
         2: .line 42
            new com.android.proxyhandler.ProxyServer
            dup
            invokespecial com.android.proxyhandler.ProxyServer.<init>:()V
            putstatic com.android.proxyhandler.ProxyService.server:Lcom/android/proxyhandler/ProxyServer;
         3: .line 43
            getstatic com.android.proxyhandler.ProxyService.server:Lcom/android/proxyhandler/ProxyServer;
            invokevirtual com.android.proxyhandler.ProxyServer.startServer:()V
         4: .line 45
      StackMap locals:
      StackMap stack:
            return
        end local 0 // com.android.proxyhandler.ProxyService this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    5     0  this  Lcom/android/proxyhandler/ProxyService;

  public void onDestroy();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // com.android.proxyhandler.ProxyService this
         0: .line 49
            getstatic com.android.proxyhandler.ProxyService.server:Lcom/android/proxyhandler/ProxyServer;
            ifnull 3
         1: .line 50
            getstatic com.android.proxyhandler.ProxyService.server:Lcom/android/proxyhandler/ProxyServer;
            invokevirtual com.android.proxyhandler.ProxyServer.stopServer:()V
         2: .line 51
            aconst_null
            putstatic com.android.proxyhandler.ProxyService.server:Lcom/android/proxyhandler/ProxyServer;
         3: .line 53
      StackMap locals:
      StackMap stack:
            return
        end local 0 // com.android.proxyhandler.ProxyService this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    4     0  this  Lcom/android/proxyhandler/ProxyService;

  public android.os.IBinder onBind(android.content.Intent);
    descriptor: (Landroid/content/Intent;)Landroid/os/IBinder;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=2, args_size=2
        start local 0 // com.android.proxyhandler.ProxyService this
         0: .line 57
            new java.lang.Error
            dup
            ldc "Unresolved compilation problems: \n\tType mismatch: cannot convert from new Stub(){} to IBinder\n\tIProxyCallback cannot be resolved to a type\n\tThe method getProxyPort(IBinder) of type new Stub(){} must override or implement a supertype method\n\tIProxyPortListener cannot be resolved to a type\n\tIProxyPortListener cannot be resolved\n"
            invokespecial java.lang.Error.<init>:(Ljava/lang/String;)V
            athrow
        end local 0 // com.android.proxyhandler.ProxyService this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lcom/android/proxyhandler/ProxyService;
    MethodParameters:
        Name  Flags
      intent  
}
SourceFile: "ProxyService.java"
NestMembers:
  com.android.proxyhandler.ProxyService$1