public class org.springframework.scheduling.support.SimpleTriggerContext implements org.springframework.scheduling.TriggerContext
  minor version: 0
  major version: 59
  flags: flags: (0x0021) ACC_PUBLIC, ACC_SUPER
  this_class: org.springframework.scheduling.support.SimpleTriggerContext
  super_class: java.lang.Object
{
  private final java.time.Clock clock;
    descriptor: Ljava/time/Clock;
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL

  private volatile java.util.Date lastScheduledExecutionTime;
    descriptor: Ljava/util/Date;
    flags: (0x0042) ACC_PRIVATE, ACC_VOLATILE
    RuntimeVisibleAnnotations: 
      org.springframework.lang.Nullable()

  private volatile java.util.Date lastActualExecutionTime;
    descriptor: Ljava/util/Date;
    flags: (0x0042) ACC_PRIVATE, ACC_VOLATILE
    RuntimeVisibleAnnotations: 
      org.springframework.lang.Nullable()

  private volatile java.util.Date lastCompletionTime;
    descriptor: Ljava/util/Date;
    flags: (0x0042) ACC_PRIVATE, ACC_VOLATILE
    RuntimeVisibleAnnotations: 
      org.springframework.lang.Nullable()

  public void <init>();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // org.springframework.scheduling.support.SimpleTriggerContext this
         0: .line 49
            aload 0 /* this */
            invokespecial java.lang.Object.<init>:()V
         1: .line 50
            aload 0 /* this */
            invokestatic java.time.Clock.systemDefaultZone:()Ljava/time/Clock;
            putfield org.springframework.scheduling.support.SimpleTriggerContext.clock:Ljava/time/Clock;
         2: .line 51
            return
        end local 0 // org.springframework.scheduling.support.SimpleTriggerContext this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0  this  Lorg/springframework/scheduling/support/SimpleTriggerContext;

  public void <init>(java.util.Date, java.util.Date, java.util.Date);
    descriptor: (Ljava/util/Date;Ljava/util/Date;Ljava/util/Date;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=4, args_size=4
        start local 0 // org.springframework.scheduling.support.SimpleTriggerContext this
        start local 1 // java.util.Date lastScheduledExecutionTime
        start local 2 // java.util.Date lastActualExecutionTime
        start local 3 // java.util.Date lastCompletionTime
         0: .line 61
            aload 0 /* this */
            invokespecial org.springframework.scheduling.support.SimpleTriggerContext.<init>:()V
         1: .line 62
            aload 0 /* this */
            aload 1 /* lastScheduledExecutionTime */
            putfield org.springframework.scheduling.support.SimpleTriggerContext.lastScheduledExecutionTime:Ljava/util/Date;
         2: .line 63
            aload 0 /* this */
            aload 2 /* lastActualExecutionTime */
            putfield org.springframework.scheduling.support.SimpleTriggerContext.lastActualExecutionTime:Ljava/util/Date;
         3: .line 64
            aload 0 /* this */
            aload 3 /* lastCompletionTime */
            putfield org.springframework.scheduling.support.SimpleTriggerContext.lastCompletionTime:Ljava/util/Date;
         4: .line 65
            return
        end local 3 // java.util.Date lastCompletionTime
        end local 2 // java.util.Date lastActualExecutionTime
        end local 1 // java.util.Date lastScheduledExecutionTime
        end local 0 // org.springframework.scheduling.support.SimpleTriggerContext this
      LocalVariableTable:
        Start  End  Slot                        Name  Signature
            0    5     0                        this  Lorg/springframework/scheduling/support/SimpleTriggerContext;
            0    5     1  lastScheduledExecutionTime  Ljava/util/Date;
            0    5     2     lastActualExecutionTime  Ljava/util/Date;
            0    5     3          lastCompletionTime  Ljava/util/Date;
    MethodParameters:
                            Name  Flags
      lastScheduledExecutionTime  
      lastActualExecutionTime     
      lastCompletionTime          

  public void <init>(java.time.Clock);
    descriptor: (Ljava/time/Clock;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.springframework.scheduling.support.SimpleTriggerContext this
        start local 1 // java.time.Clock clock
         0: .line 74
            aload 0 /* this */
            invokespecial java.lang.Object.<init>:()V
         1: .line 75
            aload 0 /* this */
            aload 1 /* clock */
            putfield org.springframework.scheduling.support.SimpleTriggerContext.clock:Ljava/time/Clock;
         2: .line 76
            return
        end local 1 // java.time.Clock clock
        end local 0 // org.springframework.scheduling.support.SimpleTriggerContext this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    3     0   this  Lorg/springframework/scheduling/support/SimpleTriggerContext;
            0    3     1  clock  Ljava/time/Clock;
    MethodParameters:
       Name  Flags
      clock  

  public void update(java.util.Date, java.util.Date, java.util.Date);
    descriptor: (Ljava/util/Date;Ljava/util/Date;Ljava/util/Date;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=4, args_size=4
        start local 0 // org.springframework.scheduling.support.SimpleTriggerContext this
        start local 1 // java.util.Date lastScheduledExecutionTime
        start local 2 // java.util.Date lastActualExecutionTime
        start local 3 // java.util.Date lastCompletionTime
         0: .line 86
            aload 0 /* this */
            aload 1 /* lastScheduledExecutionTime */
            putfield org.springframework.scheduling.support.SimpleTriggerContext.lastScheduledExecutionTime:Ljava/util/Date;
         1: .line 87
            aload 0 /* this */
            aload 2 /* lastActualExecutionTime */
            putfield org.springframework.scheduling.support.SimpleTriggerContext.lastActualExecutionTime:Ljava/util/Date;
         2: .line 88
            aload 0 /* this */
            aload 3 /* lastCompletionTime */
            putfield org.springframework.scheduling.support.SimpleTriggerContext.lastCompletionTime:Ljava/util/Date;
         3: .line 89
            return
        end local 3 // java.util.Date lastCompletionTime
        end local 2 // java.util.Date lastActualExecutionTime
        end local 1 // java.util.Date lastScheduledExecutionTime
        end local 0 // org.springframework.scheduling.support.SimpleTriggerContext this
      LocalVariableTable:
        Start  End  Slot                        Name  Signature
            0    4     0                        this  Lorg/springframework/scheduling/support/SimpleTriggerContext;
            0    4     1  lastScheduledExecutionTime  Ljava/util/Date;
            0    4     2     lastActualExecutionTime  Ljava/util/Date;
            0    4     3          lastCompletionTime  Ljava/util/Date;
    MethodParameters:
                            Name  Flags
      lastScheduledExecutionTime  
      lastActualExecutionTime     
      lastCompletionTime          

  public java.time.Clock getClock();
    descriptor: ()Ljava/time/Clock;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.springframework.scheduling.support.SimpleTriggerContext this
         0: .line 94
            aload 0 /* this */
            getfield org.springframework.scheduling.support.SimpleTriggerContext.clock:Ljava/time/Clock;
            areturn
        end local 0 // org.springframework.scheduling.support.SimpleTriggerContext this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/springframework/scheduling/support/SimpleTriggerContext;

  public java.util.Date lastScheduledExecutionTime();
    descriptor: ()Ljava/util/Date;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.springframework.scheduling.support.SimpleTriggerContext this
         0: .line 100
            aload 0 /* this */
            getfield org.springframework.scheduling.support.SimpleTriggerContext.lastScheduledExecutionTime:Ljava/util/Date;
            areturn
        end local 0 // org.springframework.scheduling.support.SimpleTriggerContext this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/springframework/scheduling/support/SimpleTriggerContext;
    RuntimeVisibleAnnotations: 
      org.springframework.lang.Nullable()

  public java.util.Date lastActualExecutionTime();
    descriptor: ()Ljava/util/Date;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.springframework.scheduling.support.SimpleTriggerContext this
         0: .line 106
            aload 0 /* this */
            getfield org.springframework.scheduling.support.SimpleTriggerContext.lastActualExecutionTime:Ljava/util/Date;
            areturn
        end local 0 // org.springframework.scheduling.support.SimpleTriggerContext this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/springframework/scheduling/support/SimpleTriggerContext;
    RuntimeVisibleAnnotations: 
      org.springframework.lang.Nullable()

  public java.util.Date lastCompletionTime();
    descriptor: ()Ljava/util/Date;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.springframework.scheduling.support.SimpleTriggerContext this
         0: .line 112
            aload 0 /* this */
            getfield org.springframework.scheduling.support.SimpleTriggerContext.lastCompletionTime:Ljava/util/Date;
            areturn
        end local 0 // org.springframework.scheduling.support.SimpleTriggerContext this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/springframework/scheduling/support/SimpleTriggerContext;
    RuntimeVisibleAnnotations: 
      org.springframework.lang.Nullable()
}
SourceFile: "SimpleTriggerContext.java"