public class org.springframework.context.support.StaticApplicationContext extends org.springframework.context.support.GenericApplicationContext
  minor version: 0
  major version: 59
  flags: flags: (0x0021) ACC_PUBLIC, ACC_SUPER
  this_class: org.springframework.context.support.StaticApplicationContext
  super_class: org.springframework.context.support.GenericApplicationContext
{
  private final org.springframework.context.support.StaticMessageSource staticMessageSource;
    descriptor: Lorg/springframework/context/support/StaticMessageSource;
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL

  public void <init>();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // org.springframework.context.support.StaticApplicationContext this
         0: .line 53
            aload 0 /* this */
            aconst_null
            invokespecial org.springframework.context.support.StaticApplicationContext.<init>:(Lorg/springframework/context/ApplicationContext;)V
         1: .line 54
            return
        end local 0 // org.springframework.context.support.StaticApplicationContext this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lorg/springframework/context/support/StaticApplicationContext;
    Exceptions:
      throws org.springframework.beans.BeansException

  public void <init>(org.springframework.context.ApplicationContext);
    descriptor: (Lorg/springframework/context/ApplicationContext;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=2, args_size=2
        start local 0 // org.springframework.context.support.StaticApplicationContext this
        start local 1 // org.springframework.context.ApplicationContext parent
         0: .line 64
            aload 0 /* this */
            aload 1 /* parent */
            invokespecial org.springframework.context.support.GenericApplicationContext.<init>:(Lorg/springframework/context/ApplicationContext;)V
         1: .line 67
            aload 0 /* this */
            new org.springframework.context.support.StaticMessageSource
            dup
            invokespecial org.springframework.context.support.StaticMessageSource.<init>:()V
            putfield org.springframework.context.support.StaticApplicationContext.staticMessageSource:Lorg/springframework/context/support/StaticMessageSource;
         2: .line 68
            aload 0 /* this */
            invokevirtual org.springframework.context.support.StaticApplicationContext.getBeanFactory:()Lorg/springframework/beans/factory/config/ConfigurableListableBeanFactory;
            ldc "messageSource"
            aload 0 /* this */
            getfield org.springframework.context.support.StaticApplicationContext.staticMessageSource:Lorg/springframework/context/support/StaticMessageSource;
            invokeinterface org.springframework.beans.factory.config.ConfigurableListableBeanFactory.registerSingleton:(Ljava/lang/String;Ljava/lang/Object;)V
         3: .line 69
            return
        end local 1 // org.springframework.context.ApplicationContext parent
        end local 0 // org.springframework.context.support.StaticApplicationContext this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    4     0    this  Lorg/springframework/context/support/StaticApplicationContext;
            0    4     1  parent  Lorg/springframework/context/ApplicationContext;
    Exceptions:
      throws org.springframework.beans.BeansException
    RuntimeVisibleParameterAnnotations: 
      0:
        org.springframework.lang.Nullable()
    MethodParameters:
        Name  Flags
      parent  

  protected void assertBeanFactoryActive();
    descriptor: ()V
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=0, locals=1, args_size=1
        start local 0 // org.springframework.context.support.StaticApplicationContext this
         0: .line 77
            return
        end local 0 // org.springframework.context.support.StaticApplicationContext this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/springframework/context/support/StaticApplicationContext;

  public final org.springframework.context.support.StaticMessageSource getStaticMessageSource();
    descriptor: ()Lorg/springframework/context/support/StaticMessageSource;
    flags: (0x0011) ACC_PUBLIC, ACC_FINAL
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.springframework.context.support.StaticApplicationContext this
         0: .line 85
            aload 0 /* this */
            getfield org.springframework.context.support.StaticApplicationContext.staticMessageSource:Lorg/springframework/context/support/StaticMessageSource;
            areturn
        end local 0 // org.springframework.context.support.StaticApplicationContext this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/springframework/context/support/StaticApplicationContext;

  public void registerSingleton(java.lang.String, java.lang.Class<?>);
    descriptor: (Ljava/lang/String;Ljava/lang/Class;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=4, args_size=3
        start local 0 // org.springframework.context.support.StaticApplicationContext this
        start local 1 // java.lang.String name
        start local 2 // java.lang.Class clazz
         0: .line 94
            new org.springframework.beans.factory.support.GenericBeanDefinition
            dup
            invokespecial org.springframework.beans.factory.support.GenericBeanDefinition.<init>:()V
            astore 3 /* bd */
        start local 3 // org.springframework.beans.factory.support.GenericBeanDefinition bd
         1: .line 95
            aload 3 /* bd */
            aload 2 /* clazz */
            invokevirtual org.springframework.beans.factory.support.GenericBeanDefinition.setBeanClass:(Ljava/lang/Class;)V
         2: .line 96
            aload 0 /* this */
            invokevirtual org.springframework.context.support.StaticApplicationContext.getDefaultListableBeanFactory:()Lorg/springframework/beans/factory/support/DefaultListableBeanFactory;
            aload 1 /* name */
            aload 3 /* bd */
            invokevirtual org.springframework.beans.factory.support.DefaultListableBeanFactory.registerBeanDefinition:(Ljava/lang/String;Lorg/springframework/beans/factory/config/BeanDefinition;)V
         3: .line 97
            return
        end local 3 // org.springframework.beans.factory.support.GenericBeanDefinition bd
        end local 2 // java.lang.Class clazz
        end local 1 // java.lang.String name
        end local 0 // org.springframework.context.support.StaticApplicationContext this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    4     0   this  Lorg/springframework/context/support/StaticApplicationContext;
            0    4     1   name  Ljava/lang/String;
            0    4     2  clazz  Ljava/lang/Class<*>;
            1    4     3     bd  Lorg/springframework/beans/factory/support/GenericBeanDefinition;
    Exceptions:
      throws org.springframework.beans.BeansException
    Signature: (Ljava/lang/String;Ljava/lang/Class<*>;)V
    MethodParameters:
       Name  Flags
      name   
      clazz  

  public void registerSingleton(java.lang.String, java.lang.Class<?>, org.springframework.beans.MutablePropertyValues);
    descriptor: (Ljava/lang/String;Ljava/lang/Class;Lorg/springframework/beans/MutablePropertyValues;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=5, args_size=4
        start local 0 // org.springframework.context.support.StaticApplicationContext this
        start local 1 // java.lang.String name
        start local 2 // java.lang.Class clazz
        start local 3 // org.springframework.beans.MutablePropertyValues pvs
         0: .line 105
            new org.springframework.beans.factory.support.GenericBeanDefinition
            dup
            invokespecial org.springframework.beans.factory.support.GenericBeanDefinition.<init>:()V
            astore 4 /* bd */
        start local 4 // org.springframework.beans.factory.support.GenericBeanDefinition bd
         1: .line 106
            aload 4 /* bd */
            aload 2 /* clazz */
            invokevirtual org.springframework.beans.factory.support.GenericBeanDefinition.setBeanClass:(Ljava/lang/Class;)V
         2: .line 107
            aload 4 /* bd */
            aload 3 /* pvs */
            invokevirtual org.springframework.beans.factory.support.GenericBeanDefinition.setPropertyValues:(Lorg/springframework/beans/MutablePropertyValues;)V
         3: .line 108
            aload 0 /* this */
            invokevirtual org.springframework.context.support.StaticApplicationContext.getDefaultListableBeanFactory:()Lorg/springframework/beans/factory/support/DefaultListableBeanFactory;
            aload 1 /* name */
            aload 4 /* bd */
            invokevirtual org.springframework.beans.factory.support.DefaultListableBeanFactory.registerBeanDefinition:(Ljava/lang/String;Lorg/springframework/beans/factory/config/BeanDefinition;)V
         4: .line 109
            return
        end local 4 // org.springframework.beans.factory.support.GenericBeanDefinition bd
        end local 3 // org.springframework.beans.MutablePropertyValues pvs
        end local 2 // java.lang.Class clazz
        end local 1 // java.lang.String name
        end local 0 // org.springframework.context.support.StaticApplicationContext this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    5     0   this  Lorg/springframework/context/support/StaticApplicationContext;
            0    5     1   name  Ljava/lang/String;
            0    5     2  clazz  Ljava/lang/Class<*>;
            0    5     3    pvs  Lorg/springframework/beans/MutablePropertyValues;
            1    5     4     bd  Lorg/springframework/beans/factory/support/GenericBeanDefinition;
    Exceptions:
      throws org.springframework.beans.BeansException
    Signature: (Ljava/lang/String;Ljava/lang/Class<*>;Lorg/springframework/beans/MutablePropertyValues;)V
    MethodParameters:
       Name  Flags
      name   
      clazz  
      pvs    

  public void registerPrototype(java.lang.String, java.lang.Class<?>);
    descriptor: (Ljava/lang/String;Ljava/lang/Class;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=4, args_size=3
        start local 0 // org.springframework.context.support.StaticApplicationContext this
        start local 1 // java.lang.String name
        start local 2 // java.lang.Class clazz
         0: .line 117
            new org.springframework.beans.factory.support.GenericBeanDefinition
            dup
            invokespecial org.springframework.beans.factory.support.GenericBeanDefinition.<init>:()V
            astore 3 /* bd */
        start local 3 // org.springframework.beans.factory.support.GenericBeanDefinition bd
         1: .line 118
            aload 3 /* bd */
            ldc "prototype"
            invokevirtual org.springframework.beans.factory.support.GenericBeanDefinition.setScope:(Ljava/lang/String;)V
         2: .line 119
            aload 3 /* bd */
            aload 2 /* clazz */
            invokevirtual org.springframework.beans.factory.support.GenericBeanDefinition.setBeanClass:(Ljava/lang/Class;)V
         3: .line 120
            aload 0 /* this */
            invokevirtual org.springframework.context.support.StaticApplicationContext.getDefaultListableBeanFactory:()Lorg/springframework/beans/factory/support/DefaultListableBeanFactory;
            aload 1 /* name */
            aload 3 /* bd */
            invokevirtual org.springframework.beans.factory.support.DefaultListableBeanFactory.registerBeanDefinition:(Ljava/lang/String;Lorg/springframework/beans/factory/config/BeanDefinition;)V
         4: .line 121
            return
        end local 3 // org.springframework.beans.factory.support.GenericBeanDefinition bd
        end local 2 // java.lang.Class clazz
        end local 1 // java.lang.String name
        end local 0 // org.springframework.context.support.StaticApplicationContext this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    5     0   this  Lorg/springframework/context/support/StaticApplicationContext;
            0    5     1   name  Ljava/lang/String;
            0    5     2  clazz  Ljava/lang/Class<*>;
            1    5     3     bd  Lorg/springframework/beans/factory/support/GenericBeanDefinition;
    Exceptions:
      throws org.springframework.beans.BeansException
    Signature: (Ljava/lang/String;Ljava/lang/Class<*>;)V
    MethodParameters:
       Name  Flags
      name   
      clazz  

  public void registerPrototype(java.lang.String, java.lang.Class<?>, org.springframework.beans.MutablePropertyValues);
    descriptor: (Ljava/lang/String;Ljava/lang/Class;Lorg/springframework/beans/MutablePropertyValues;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=5, args_size=4
        start local 0 // org.springframework.context.support.StaticApplicationContext this
        start local 1 // java.lang.String name
        start local 2 // java.lang.Class clazz
        start local 3 // org.springframework.beans.MutablePropertyValues pvs
         0: .line 129
            new org.springframework.beans.factory.support.GenericBeanDefinition
            dup
            invokespecial org.springframework.beans.factory.support.GenericBeanDefinition.<init>:()V
            astore 4 /* bd */
        start local 4 // org.springframework.beans.factory.support.GenericBeanDefinition bd
         1: .line 130
            aload 4 /* bd */
            ldc "prototype"
            invokevirtual org.springframework.beans.factory.support.GenericBeanDefinition.setScope:(Ljava/lang/String;)V
         2: .line 131
            aload 4 /* bd */
            aload 2 /* clazz */
            invokevirtual org.springframework.beans.factory.support.GenericBeanDefinition.setBeanClass:(Ljava/lang/Class;)V
         3: .line 132
            aload 4 /* bd */
            aload 3 /* pvs */
            invokevirtual org.springframework.beans.factory.support.GenericBeanDefinition.setPropertyValues:(Lorg/springframework/beans/MutablePropertyValues;)V
         4: .line 133
            aload 0 /* this */
            invokevirtual org.springframework.context.support.StaticApplicationContext.getDefaultListableBeanFactory:()Lorg/springframework/beans/factory/support/DefaultListableBeanFactory;
            aload 1 /* name */
            aload 4 /* bd */
            invokevirtual org.springframework.beans.factory.support.DefaultListableBeanFactory.registerBeanDefinition:(Ljava/lang/String;Lorg/springframework/beans/factory/config/BeanDefinition;)V
         5: .line 134
            return
        end local 4 // org.springframework.beans.factory.support.GenericBeanDefinition bd
        end local 3 // org.springframework.beans.MutablePropertyValues pvs
        end local 2 // java.lang.Class clazz
        end local 1 // java.lang.String name
        end local 0 // org.springframework.context.support.StaticApplicationContext this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    6     0   this  Lorg/springframework/context/support/StaticApplicationContext;
            0    6     1   name  Ljava/lang/String;
            0    6     2  clazz  Ljava/lang/Class<*>;
            0    6     3    pvs  Lorg/springframework/beans/MutablePropertyValues;
            1    6     4     bd  Lorg/springframework/beans/factory/support/GenericBeanDefinition;
    Exceptions:
      throws org.springframework.beans.BeansException
    Signature: (Ljava/lang/String;Ljava/lang/Class<*>;Lorg/springframework/beans/MutablePropertyValues;)V
    MethodParameters:
       Name  Flags
      name   
      clazz  
      pvs    

  public void addMessage(java.lang.String, java.util.Locale, java.lang.String);
    descriptor: (Ljava/lang/String;Ljava/util/Locale;Ljava/lang/String;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=4, args_size=4
        start local 0 // org.springframework.context.support.StaticApplicationContext this
        start local 1 // java.lang.String code
        start local 2 // java.util.Locale locale
        start local 3 // java.lang.String defaultMessage
         0: .line 144
            aload 0 /* this */
            invokevirtual org.springframework.context.support.StaticApplicationContext.getStaticMessageSource:()Lorg/springframework/context/support/StaticMessageSource;
            aload 1 /* code */
            aload 2 /* locale */
            aload 3 /* defaultMessage */
            invokevirtual org.springframework.context.support.StaticMessageSource.addMessage:(Ljava/lang/String;Ljava/util/Locale;Ljava/lang/String;)V
         1: .line 145
            return
        end local 3 // java.lang.String defaultMessage
        end local 2 // java.util.Locale locale
        end local 1 // java.lang.String code
        end local 0 // org.springframework.context.support.StaticApplicationContext this
      LocalVariableTable:
        Start  End  Slot            Name  Signature
            0    2     0            this  Lorg/springframework/context/support/StaticApplicationContext;
            0    2     1            code  Ljava/lang/String;
            0    2     2          locale  Ljava/util/Locale;
            0    2     3  defaultMessage  Ljava/lang/String;
    MethodParameters:
                Name  Flags
      code            
      locale          
      defaultMessage  
}
SourceFile: "StaticApplicationContext.java"