public interface org.eclipse.jetty.util.component.LifeCycle
  minor version: 0
  major version: 59
  flags: flags: (0x0601) ACC_PUBLIC, ACC_INTERFACE, ACC_ABSTRACT
  this_class: org.eclipse.jetty.util.component.LifeCycle
  super_class: java.lang.Object
{
  public abstract void start();
    descriptor: ()V
    flags: (0x0401) ACC_PUBLIC, ACC_ABSTRACT
    Exceptions:
      throws java.lang.Exception
    RuntimeVisibleAnnotations: 
      org.eclipse.jetty.util.annotation.ManagedOperation(value = "Starts the instance", impact = "ACTION")

  public static void start(java.lang.Object);
    descriptor: (Ljava/lang/Object;)V
    flags: (0x0009) ACC_PUBLIC, ACC_STATIC
    Code:
      stack=3, locals=2, args_size=1
        start local 0 // java.lang.Object object
         0: .line 56
            aload 0 /* object */
            instanceof org.eclipse.jetty.util.component.LifeCycle
            ifeq 5
         1: .line 60
            aload 0 /* object */
            checkcast org.eclipse.jetty.util.component.LifeCycle
            invokeinterface org.eclipse.jetty.util.component.LifeCycle.start:()V
         2: .line 61
            goto 5
         3: .line 62
      StackMap locals:
      StackMap stack: java.lang.Exception
            astore 1 /* e */
        start local 1 // java.lang.Exception e
         4: .line 64
            new java.lang.RuntimeException
            dup
            aload 1 /* e */
            invokespecial java.lang.RuntimeException.<init>:(Ljava/lang/Throwable;)V
            athrow
        end local 1 // java.lang.Exception e
         5: .line 67
      StackMap locals:
      StackMap stack:
            return
        end local 0 // java.lang.Object object
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    6     0  object  Ljava/lang/Object;
            4    5     1       e  Ljava/lang/Exception;
      Exception table:
        from    to  target  type
           1     2       3  Class java.lang.Exception
    MethodParameters:
        Name  Flags
      object  

  public abstract void stop();
    descriptor: ()V
    flags: (0x0401) ACC_PUBLIC, ACC_ABSTRACT
    Exceptions:
      throws java.lang.Exception
    RuntimeVisibleAnnotations: 
      org.eclipse.jetty.util.annotation.ManagedOperation(value = "Stops the instance", impact = "ACTION")

  public static void stop(java.lang.Object);
    descriptor: (Ljava/lang/Object;)V
    flags: (0x0009) ACC_PUBLIC, ACC_STATIC
    Code:
      stack=3, locals=2, args_size=1
        start local 0 // java.lang.Object object
         0: .line 92
            aload 0 /* object */
            instanceof org.eclipse.jetty.util.component.LifeCycle
            ifeq 5
         1: .line 96
            aload 0 /* object */
            checkcast org.eclipse.jetty.util.component.LifeCycle
            invokeinterface org.eclipse.jetty.util.component.LifeCycle.stop:()V
         2: .line 97
            goto 5
         3: .line 98
      StackMap locals:
      StackMap stack: java.lang.Exception
            astore 1 /* e */
        start local 1 // java.lang.Exception e
         4: .line 100
            new java.lang.RuntimeException
            dup
            aload 1 /* e */
            invokespecial java.lang.RuntimeException.<init>:(Ljava/lang/Throwable;)V
            athrow
        end local 1 // java.lang.Exception e
         5: .line 103
      StackMap locals:
      StackMap stack:
            return
        end local 0 // java.lang.Object object
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    6     0  object  Ljava/lang/Object;
            4    5     1       e  Ljava/lang/Exception;
      Exception table:
        from    to  target  type
           1     2       3  Class java.lang.Exception
    MethodParameters:
        Name  Flags
      object  

  public abstract boolean isRunning();
    descriptor: ()Z
    flags: (0x0401) ACC_PUBLIC, ACC_ABSTRACT

  public abstract boolean isStarted();
    descriptor: ()Z
    flags: (0x0401) ACC_PUBLIC, ACC_ABSTRACT

  public abstract boolean isStarting();
    descriptor: ()Z
    flags: (0x0401) ACC_PUBLIC, ACC_ABSTRACT

  public abstract boolean isStopping();
    descriptor: ()Z
    flags: (0x0401) ACC_PUBLIC, ACC_ABSTRACT

  public abstract boolean isStopped();
    descriptor: ()Z
    flags: (0x0401) ACC_PUBLIC, ACC_ABSTRACT

  public abstract boolean isFailed();
    descriptor: ()Z
    flags: (0x0401) ACC_PUBLIC, ACC_ABSTRACT

  public abstract boolean addEventListener(java.util.EventListener);
    descriptor: (Ljava/util/EventListener;)Z
    flags: (0x0401) ACC_PUBLIC, ACC_ABSTRACT
    MethodParameters:
          Name  Flags
      listener  

  public abstract boolean removeEventListener(java.util.EventListener);
    descriptor: (Ljava/util/EventListener;)Z
    flags: (0x0401) ACC_PUBLIC, ACC_ABSTRACT
    MethodParameters:
          Name  Flags
      listener  
}
SourceFile: "LifeCycle.java"
NestMembers:
  org.eclipse.jetty.util.component.LifeCycle$Listener
InnerClasses:
  public abstract Listener = org.eclipse.jetty.util.component.LifeCycle$Listener of org.eclipse.jetty.util.component.LifeCycle
    RuntimeVisibleAnnotations: 
      org.eclipse.jetty.util.annotation.ManagedObject(value = "Lifecycle Interface for startable components")