public class org.springframework.core.io.ResourceEditor extends java.beans.PropertyEditorSupport
  minor version: 0
  major version: 59
  flags: flags: (0x0021) ACC_PUBLIC, ACC_SUPER
  this_class: org.springframework.core.io.ResourceEditor
  super_class: java.beans.PropertyEditorSupport
{
  private final org.springframework.core.io.ResourceLoader resourceLoader;
    descriptor: Lorg/springframework/core/io/ResourceLoader;
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL

  private org.springframework.core.env.PropertyResolver propertyResolver;
    descriptor: Lorg/springframework/core/env/PropertyResolver;
    flags: (0x0002) ACC_PRIVATE
    RuntimeVisibleAnnotations: 
      org.springframework.lang.Nullable()

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

  public void <init>();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=1, args_size=1
        start local 0 // org.springframework.core.io.ResourceEditor this
         0: .line 65
            aload 0 /* this */
            new org.springframework.core.io.DefaultResourceLoader
            dup
            invokespecial org.springframework.core.io.DefaultResourceLoader.<init>:()V
            aconst_null
            invokespecial org.springframework.core.io.ResourceEditor.<init>:(Lorg/springframework/core/io/ResourceLoader;Lorg/springframework/core/env/PropertyResolver;)V
         1: .line 66
            return
        end local 0 // org.springframework.core.io.ResourceEditor this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lorg/springframework/core/io/ResourceEditor;

  public void <init>(org.springframework.core.io.ResourceLoader, org.springframework.core.env.PropertyResolver);
    descriptor: (Lorg/springframework/core/io/ResourceLoader;Lorg/springframework/core/env/PropertyResolver;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=3, args_size=3
        start local 0 // org.springframework.core.io.ResourceEditor this
        start local 1 // org.springframework.core.io.ResourceLoader resourceLoader
        start local 2 // org.springframework.core.env.PropertyResolver propertyResolver
         0: .line 75
            aload 0 /* this */
            aload 1 /* resourceLoader */
            aload 2 /* propertyResolver */
            iconst_1
            invokespecial org.springframework.core.io.ResourceEditor.<init>:(Lorg/springframework/core/io/ResourceLoader;Lorg/springframework/core/env/PropertyResolver;Z)V
         1: .line 76
            return
        end local 2 // org.springframework.core.env.PropertyResolver propertyResolver
        end local 1 // org.springframework.core.io.ResourceLoader resourceLoader
        end local 0 // org.springframework.core.io.ResourceEditor this
      LocalVariableTable:
        Start  End  Slot              Name  Signature
            0    2     0              this  Lorg/springframework/core/io/ResourceEditor;
            0    2     1    resourceLoader  Lorg/springframework/core/io/ResourceLoader;
            0    2     2  propertyResolver  Lorg/springframework/core/env/PropertyResolver;
    RuntimeVisibleParameterAnnotations: 
      0:
      1:
        org.springframework.lang.Nullable()
    MethodParameters:
                  Name  Flags
      resourceLoader    
      propertyResolver  

  public void <init>(org.springframework.core.io.ResourceLoader, org.springframework.core.env.PropertyResolver, boolean);
    descriptor: (Lorg/springframework/core/io/ResourceLoader;Lorg/springframework/core/env/PropertyResolver;Z)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=4, args_size=4
        start local 0 // org.springframework.core.io.ResourceEditor this
        start local 1 // org.springframework.core.io.ResourceLoader resourceLoader
        start local 2 // org.springframework.core.env.PropertyResolver propertyResolver
        start local 3 // boolean ignoreUnresolvablePlaceholders
         0: .line 86
            aload 0 /* this */
            invokespecial java.beans.PropertyEditorSupport.<init>:()V
         1: .line 89
            aload 1 /* resourceLoader */
            ldc "ResourceLoader must not be null"
            invokestatic org.springframework.util.Assert.notNull:(Ljava/lang/Object;Ljava/lang/String;)V
         2: .line 90
            aload 0 /* this */
            aload 1 /* resourceLoader */
            putfield org.springframework.core.io.ResourceEditor.resourceLoader:Lorg/springframework/core/io/ResourceLoader;
         3: .line 91
            aload 0 /* this */
            aload 2 /* propertyResolver */
            putfield org.springframework.core.io.ResourceEditor.propertyResolver:Lorg/springframework/core/env/PropertyResolver;
         4: .line 92
            aload 0 /* this */
            iload 3 /* ignoreUnresolvablePlaceholders */
            putfield org.springframework.core.io.ResourceEditor.ignoreUnresolvablePlaceholders:Z
         5: .line 93
            return
        end local 3 // boolean ignoreUnresolvablePlaceholders
        end local 2 // org.springframework.core.env.PropertyResolver propertyResolver
        end local 1 // org.springframework.core.io.ResourceLoader resourceLoader
        end local 0 // org.springframework.core.io.ResourceEditor this
      LocalVariableTable:
        Start  End  Slot                            Name  Signature
            0    6     0                            this  Lorg/springframework/core/io/ResourceEditor;
            0    6     1                  resourceLoader  Lorg/springframework/core/io/ResourceLoader;
            0    6     2                propertyResolver  Lorg/springframework/core/env/PropertyResolver;
            0    6     3  ignoreUnresolvablePlaceholders  Z
    RuntimeVisibleParameterAnnotations: 
      0:
      1:
        org.springframework.lang.Nullable()
      2:
    MethodParameters:
                                Name  Flags
      resourceLoader                  
      propertyResolver                
      ignoreUnresolvablePlaceholders  

  public void setAsText(java.lang.String);
    descriptor: (Ljava/lang/String;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=3, args_size=2
        start local 0 // org.springframework.core.io.ResourceEditor this
        start local 1 // java.lang.String text
         0: .line 98
            aload 1 /* text */
            invokestatic org.springframework.util.StringUtils.hasText:(Ljava/lang/String;)Z
            ifeq 4
         1: .line 99
            aload 0 /* this */
            aload 1 /* text */
            invokevirtual org.springframework.core.io.ResourceEditor.resolvePath:(Ljava/lang/String;)Ljava/lang/String;
            invokevirtual java.lang.String.trim:()Ljava/lang/String;
            astore 2 /* locationToUse */
        start local 2 // java.lang.String locationToUse
         2: .line 100
            aload 0 /* this */
            aload 0 /* this */
            getfield org.springframework.core.io.ResourceEditor.resourceLoader:Lorg/springframework/core/io/ResourceLoader;
            aload 2 /* locationToUse */
            invokeinterface org.springframework.core.io.ResourceLoader.getResource:(Ljava/lang/String;)Lorg/springframework/core/io/Resource;
            invokevirtual org.springframework.core.io.ResourceEditor.setValue:(Ljava/lang/Object;)V
        end local 2 // java.lang.String locationToUse
         3: .line 101
            goto 5
         4: .line 103
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            aconst_null
            invokevirtual org.springframework.core.io.ResourceEditor.setValue:(Ljava/lang/Object;)V
         5: .line 105
      StackMap locals:
      StackMap stack:
            return
        end local 1 // java.lang.String text
        end local 0 // org.springframework.core.io.ResourceEditor this
      LocalVariableTable:
        Start  End  Slot           Name  Signature
            0    6     0           this  Lorg/springframework/core/io/ResourceEditor;
            0    6     1           text  Ljava/lang/String;
            2    3     2  locationToUse  Ljava/lang/String;
    MethodParameters:
      Name  Flags
      text  

  protected java.lang.String resolvePath(java.lang.String);
    descriptor: (Ljava/lang/String;)Ljava/lang/String;
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=3, locals=2, args_size=2
        start local 0 // org.springframework.core.io.ResourceEditor this
        start local 1 // java.lang.String path
         0: .line 116
            aload 0 /* this */
            getfield org.springframework.core.io.ResourceEditor.propertyResolver:Lorg/springframework/core/env/PropertyResolver;
            ifnonnull 2
         1: .line 117
            aload 0 /* this */
            new org.springframework.core.env.StandardEnvironment
            dup
            invokespecial org.springframework.core.env.StandardEnvironment.<init>:()V
            putfield org.springframework.core.io.ResourceEditor.propertyResolver:Lorg/springframework/core/env/PropertyResolver;
         2: .line 119
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.springframework.core.io.ResourceEditor.ignoreUnresolvablePlaceholders:Z
            ifeq 3
            aload 0 /* this */
            getfield org.springframework.core.io.ResourceEditor.propertyResolver:Lorg/springframework/core/env/PropertyResolver;
            aload 1 /* path */
            invokeinterface org.springframework.core.env.PropertyResolver.resolvePlaceholders:(Ljava/lang/String;)Ljava/lang/String;
            goto 4
         3: .line 120
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.springframework.core.io.ResourceEditor.propertyResolver:Lorg/springframework/core/env/PropertyResolver;
            aload 1 /* path */
            invokeinterface org.springframework.core.env.PropertyResolver.resolveRequiredPlaceholders:(Ljava/lang/String;)Ljava/lang/String;
         4: .line 119
      StackMap locals:
      StackMap stack: java.lang.String
            areturn
        end local 1 // java.lang.String path
        end local 0 // org.springframework.core.io.ResourceEditor this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    5     0  this  Lorg/springframework/core/io/ResourceEditor;
            0    5     1  path  Ljava/lang/String;
    MethodParameters:
      Name  Flags
      path  

  public java.lang.String getAsText();
    descriptor: ()Ljava/lang/String;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=2, args_size=1
        start local 0 // org.springframework.core.io.ResourceEditor this
         0: .line 127
            aload 0 /* this */
            invokevirtual org.springframework.core.io.ResourceEditor.getValue:()Ljava/lang/Object;
            checkcast org.springframework.core.io.Resource
            astore 1 /* value */
        start local 1 // org.springframework.core.io.Resource value
         1: .line 130
            aload 1 /* value */
            ifnull 2
            aload 1 /* value */
            invokeinterface org.springframework.core.io.Resource.getURL:()Ljava/net/URL;
            invokevirtual java.net.URL.toExternalForm:()Ljava/lang/String;
            goto 3
      StackMap locals: org.springframework.core.io.Resource
      StackMap stack:
         2: ldc ""
      StackMap locals:
      StackMap stack: java.lang.String
         3: areturn
         4: .line 132
      StackMap locals:
      StackMap stack: java.io.IOException
            pop
         5: .line 135
            aconst_null
            areturn
        end local 1 // org.springframework.core.io.Resource value
        end local 0 // org.springframework.core.io.ResourceEditor this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    6     0   this  Lorg/springframework/core/io/ResourceEditor;
            1    6     1  value  Lorg/springframework/core/io/Resource;
      Exception table:
        from    to  target  type
           1     3       4  Class java.io.IOException
    RuntimeVisibleAnnotations: 
      org.springframework.lang.Nullable()
}
SourceFile: "ResourceEditor.java"