class io.ebeaninternal.server.profile.DTimedProfileLocation extends io.ebeaninternal.server.profile.DProfileLocation implements io.ebeaninternal.server.profile.TimedProfileLocation
  minor version: 0
  major version: 59
  flags: flags: (0x0020) ACC_SUPER
  this_class: io.ebeaninternal.server.profile.DTimedProfileLocation
  super_class: io.ebeaninternal.server.profile.DProfileLocation
{
  private final java.lang.String label;
    descriptor: Ljava/lang/String;
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL

  private final io.ebean.metric.TimedMetric timedMetric;
    descriptor: Lio/ebean/metric/TimedMetric;
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL

  private final boolean overrideMetricName;
    descriptor: Z
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL

  private java.lang.String fullName;
    descriptor: Ljava/lang/String;
    flags: (0x0002) ACC_PRIVATE

  void <init>(int, java.lang.String, io.ebean.metric.TimedMetric);
    descriptor: (ILjava/lang/String;Lio/ebean/metric/TimedMetric;)V
    flags: (0x0000) 
    Code:
      stack=3, locals=4, args_size=4
        start local 0 // io.ebeaninternal.server.profile.DTimedProfileLocation this
        start local 1 // int lineNumber
        start local 2 // java.lang.String label
        start local 3 // io.ebean.metric.TimedMetric timedMetric
         0: .line 21
            aload 0 /* this */
            iload 1 /* lineNumber */
            invokespecial io.ebeaninternal.server.profile.DProfileLocation.<init>:(I)V
         1: .line 22
            aload 0 /* this */
            aload 2 /* label */
            putfield io.ebeaninternal.server.profile.DTimedProfileLocation.label:Ljava/lang/String;
         2: .line 23
            aload 0 /* this */
            aload 3 /* timedMetric */
            putfield io.ebeaninternal.server.profile.DTimedProfileLocation.timedMetric:Lio/ebean/metric/TimedMetric;
         3: .line 24
            aload 0 /* this */
            ldc ""
            aload 2 /* label */
            invokevirtual java.lang.String.equals:(Ljava/lang/Object;)Z
            putfield io.ebeaninternal.server.profile.DTimedProfileLocation.overrideMetricName:Z
         4: .line 25
            return
        end local 3 // io.ebean.metric.TimedMetric timedMetric
        end local 2 // java.lang.String label
        end local 1 // int lineNumber
        end local 0 // io.ebeaninternal.server.profile.DTimedProfileLocation this
      LocalVariableTable:
        Start  End  Slot         Name  Signature
            0    5     0         this  Lio/ebeaninternal/server/profile/DTimedProfileLocation;
            0    5     1   lineNumber  I
            0    5     2        label  Ljava/lang/String;
            0    5     3  timedMetric  Lio/ebean/metric/TimedMetric;
    MethodParameters:
             Name  Flags
      lineNumber   
      label        
      timedMetric  

  protected void initWith(java.lang.String);
    descriptor: (Ljava/lang/String;)V
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=4, locals=2, args_size=2
        start local 0 // io.ebeaninternal.server.profile.DTimedProfileLocation this
        start local 1 // java.lang.String locationLabel
         0: .line 29
            aload 0 /* this */
            getfield io.ebeaninternal.server.profile.DTimedProfileLocation.overrideMetricName:Z
            ifeq 2
         1: .line 30
            aload 0 /* this */
            new java.lang.StringBuilder
            dup
            ldc "txn.named."
            invokespecial java.lang.StringBuilder.<init>:(Ljava/lang/String;)V
            aload 1 /* locationLabel */
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            invokevirtual java.lang.StringBuilder.toString:()Ljava/lang/String;
            putfield io.ebeaninternal.server.profile.DTimedProfileLocation.fullName:Ljava/lang/String;
         2: .line 32
      StackMap locals:
      StackMap stack:
            return
        end local 1 // java.lang.String locationLabel
        end local 0 // io.ebeaninternal.server.profile.DTimedProfileLocation this
      LocalVariableTable:
        Start  End  Slot           Name  Signature
            0    3     0           this  Lio/ebeaninternal/server/profile/DTimedProfileLocation;
            0    3     1  locationLabel  Ljava/lang/String;
    MethodParameters:
               Name  Flags
      locationLabel  

  public java.lang.String getLabel();
    descriptor: ()Ljava/lang/String;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // io.ebeaninternal.server.profile.DTimedProfileLocation this
         0: .line 36
            aload 0 /* this */
            getfield io.ebeaninternal.server.profile.DTimedProfileLocation.label:Ljava/lang/String;
            areturn
        end local 0 // io.ebeaninternal.server.profile.DTimedProfileLocation this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lio/ebeaninternal/server/profile/DTimedProfileLocation;

  public io.ebean.metric.TimedMetric getMetric();
    descriptor: ()Lio/ebean/metric/TimedMetric;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // io.ebeaninternal.server.profile.DTimedProfileLocation this
         0: .line 41
            aload 0 /* this */
            getfield io.ebeaninternal.server.profile.DTimedProfileLocation.timedMetric:Lio/ebean/metric/TimedMetric;
            areturn
        end local 0 // io.ebeaninternal.server.profile.DTimedProfileLocation this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lio/ebeaninternal/server/profile/DTimedProfileLocation;

  public void add(long);
    descriptor: (J)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=3, args_size=2
        start local 0 // io.ebeaninternal.server.profile.DTimedProfileLocation this
        start local 1 // long executionTime
         0: .line 46
            aload 0 /* this */
            getfield io.ebeaninternal.server.profile.DTimedProfileLocation.timedMetric:Lio/ebean/metric/TimedMetric;
            lload 1 /* executionTime */
            invokeinterface io.ebean.metric.TimedMetric.add:(J)V
         1: .line 47
            return
        end local 1 // long executionTime
        end local 0 // io.ebeaninternal.server.profile.DTimedProfileLocation this
      LocalVariableTable:
        Start  End  Slot           Name  Signature
            0    2     0           this  Lio/ebeaninternal/server/profile/DTimedProfileLocation;
            0    2     1  executionTime  J
    MethodParameters:
               Name  Flags
      executionTime  

  public void visit(io.ebean.meta.MetricVisitor);
    descriptor: (Lio/ebean/meta/MetricVisitor;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=3, args_size=2
        start local 0 // io.ebeaninternal.server.profile.DTimedProfileLocation this
        start local 1 // io.ebean.meta.MetricVisitor visitor
         0: .line 51
            aload 0 /* this */
            getfield io.ebeaninternal.server.profile.DTimedProfileLocation.timedMetric:Lio/ebean/metric/TimedMetric;
            aload 1 /* visitor */
            invokeinterface io.ebean.meta.MetricVisitor.isReset:()Z
            invokeinterface io.ebean.metric.TimedMetric.collect:(Z)Lio/ebean/metric/TimedMetricStats;
            astore 2 /* collect */
        start local 2 // io.ebean.metric.TimedMetricStats collect
         1: .line 52
            aload 2 /* collect */
            ifnull 6
         2: .line 53
            aload 0 /* this */
            getfield io.ebeaninternal.server.profile.DTimedProfileLocation.overrideMetricName:Z
            ifeq 4
         3: .line 54
            aload 2 /* collect */
            aload 0 /* this */
            getfield io.ebeaninternal.server.profile.DTimedProfileLocation.fullName:Ljava/lang/String;
            invokeinterface io.ebean.metric.TimedMetricStats.setName:(Ljava/lang/String;)V
         4: .line 56
      StackMap locals: io.ebean.metric.TimedMetricStats
      StackMap stack:
            aload 2 /* collect */
            aload 0 /* this */
            invokevirtual io.ebeaninternal.server.profile.DTimedProfileLocation.location:()Ljava/lang/String;
            invokeinterface io.ebean.metric.TimedMetricStats.setLocation:(Ljava/lang/String;)V
         5: .line 57
            aload 1 /* visitor */
            aload 2 /* collect */
            invokeinterface io.ebean.meta.MetricVisitor.visitTimed:(Lio/ebean/meta/MetaTimedMetric;)V
         6: .line 59
      StackMap locals:
      StackMap stack:
            return
        end local 2 // io.ebean.metric.TimedMetricStats collect
        end local 1 // io.ebean.meta.MetricVisitor visitor
        end local 0 // io.ebeaninternal.server.profile.DTimedProfileLocation this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    7     0     this  Lio/ebeaninternal/server/profile/DTimedProfileLocation;
            0    7     1  visitor  Lio/ebean/meta/MetricVisitor;
            1    7     2  collect  Lio/ebean/metric/TimedMetricStats;
    MethodParameters:
         Name  Flags
      visitor  
}
SourceFile: "DTimedProfileLocation.java"