blob: cb5287c73b890ec4adfe9d9e66dc63525b536ba0 [file] [log] [blame]
package com.intellij.uiDesigner.lw;
import org.jdom.Element;
import com.intellij.uiDesigner.UIFormXmlConstants;
public final class LwIntroCharProperty extends LwIntrospectedProperty {
public LwIntroCharProperty(final String name){
super(name, Character.class.getName());
}
public Object read(final Element element) throws Exception{
return Character.valueOf(LwXmlReader.getRequiredString(element, UIFormXmlConstants.ATTRIBUTE_VALUE).charAt(0));
}
}