public abstract class org.springframework.cache.transaction.AbstractTransactionSupportingCacheManager extends org.springframework.cache.support.AbstractCacheManager
  minor version: 0
  major version: 59
  flags: flags: (0x0421) ACC_PUBLIC, ACC_SUPER, ACC_ABSTRACT
  this_class: org.springframework.cache.transaction.AbstractTransactionSupportingCacheManager
  super_class: org.springframework.cache.support.AbstractCacheManager
{
  private boolean transactionAware;
    descriptor: Z
    flags: (0x0002) ACC_PRIVATE

  public void <init>();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // org.springframework.cache.transaction.AbstractTransactionSupportingCacheManager this
         0: .line 33
            aload 0 /* this */
            invokespecial org.springframework.cache.support.AbstractCacheManager.<init>:()V
         1: .line 35
            aload 0 /* this */
            iconst_0
            putfield org.springframework.cache.transaction.AbstractTransactionSupportingCacheManager.transactionAware:Z
         2: .line 33
            return
        end local 0 // org.springframework.cache.transaction.AbstractTransactionSupportingCacheManager this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0  this  Lorg/springframework/cache/transaction/AbstractTransactionSupportingCacheManager;

  public void setTransactionAware(boolean);
    descriptor: (Z)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.springframework.cache.transaction.AbstractTransactionSupportingCacheManager this
        start local 1 // boolean transactionAware
         0: .line 45
            aload 0 /* this */
            iload 1 /* transactionAware */
            putfield org.springframework.cache.transaction.AbstractTransactionSupportingCacheManager.transactionAware:Z
         1: .line 46
            return
        end local 1 // boolean transactionAware
        end local 0 // org.springframework.cache.transaction.AbstractTransactionSupportingCacheManager this
      LocalVariableTable:
        Start  End  Slot              Name  Signature
            0    2     0              this  Lorg/springframework/cache/transaction/AbstractTransactionSupportingCacheManager;
            0    2     1  transactionAware  Z
    MethodParameters:
                  Name  Flags
      transactionAware  

  public boolean isTransactionAware();
    descriptor: ()Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.springframework.cache.transaction.AbstractTransactionSupportingCacheManager this
         0: .line 52
            aload 0 /* this */
            getfield org.springframework.cache.transaction.AbstractTransactionSupportingCacheManager.transactionAware:Z
            ireturn
        end local 0 // org.springframework.cache.transaction.AbstractTransactionSupportingCacheManager this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/springframework/cache/transaction/AbstractTransactionSupportingCacheManager;

  protected org.springframework.cache.Cache decorateCache(org.springframework.cache.Cache);
    descriptor: (Lorg/springframework/cache/Cache;)Lorg/springframework/cache/Cache;
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=3, locals=2, args_size=2
        start local 0 // org.springframework.cache.transaction.AbstractTransactionSupportingCacheManager this
        start local 1 // org.springframework.cache.Cache cache
         0: .line 58
            aload 0 /* this */
            invokevirtual org.springframework.cache.transaction.AbstractTransactionSupportingCacheManager.isTransactionAware:()Z
            ifeq 1
            new org.springframework.cache.transaction.TransactionAwareCacheDecorator
            dup
            aload 1 /* cache */
            invokespecial org.springframework.cache.transaction.TransactionAwareCacheDecorator.<init>:(Lorg/springframework/cache/Cache;)V
            goto 2
      StackMap locals:
      StackMap stack:
         1: aload 1 /* cache */
      StackMap locals:
      StackMap stack: org.springframework.cache.Cache
         2: areturn
        end local 1 // org.springframework.cache.Cache cache
        end local 0 // org.springframework.cache.transaction.AbstractTransactionSupportingCacheManager this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    3     0   this  Lorg/springframework/cache/transaction/AbstractTransactionSupportingCacheManager;
            0    3     1  cache  Lorg/springframework/cache/Cache;
    MethodParameters:
       Name  Flags
      cache  
}
SourceFile: "AbstractTransactionSupportingCacheManager.java"