public class org.springframework.beans.propertyeditors.ByteArrayPropertyEditor extends java.beans.PropertyEditorSupport
{
public void <init>()
{
org.springframework.beans.propertyeditors.ByteArrayPropertyEditor v;
v := @this: org.springframework.beans.propertyeditors.ByteArrayPropertyEditor;
specialinvoke v.<java.beans.PropertyEditorSupport: void <init>()>();
return;
}
public void setAsText(java.lang.String)
{
byte[] v;
java.lang.String v;
org.springframework.beans.propertyeditors.ByteArrayPropertyEditor v;
v := @this: org.springframework.beans.propertyeditors.ByteArrayPropertyEditor;
v := @parameter: java.lang.String;
if v == null goto label;
v = virtualinvoke v.<java.lang.String: byte[] getBytes()>();
goto label;
label:
v = null;
label:
virtualinvoke v.<org.springframework.beans.propertyeditors.ByteArrayPropertyEditor: void setValue(java.lang.Object)>(v);
return;
}
public java.lang.String getAsText()
{
java.lang.Object v;
java.lang.String v;
org.springframework.beans.propertyeditors.ByteArrayPropertyEditor v;
v := @this: org.springframework.beans.propertyeditors.ByteArrayPropertyEditor;
v = virtualinvoke v.<org.springframework.beans.propertyeditors.ByteArrayPropertyEditor: java.lang.Object getValue()>();
if v == null goto label;
v = new java.lang.String;
specialinvoke v.<java.lang.String: void <init>(byte[])>(v);
goto label;
label:
v = "";
label:
return v;
}
}