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