use of com.intellij.util.xml.AbstractConvertContext in project intellij-community by JetBrains.
the class PsiTypeControl method setValue.
protected void setValue(String value) {
final PsiType type = JvmPsiTypeConverterImpl.convertFromString(value, new AbstractConvertContext() {
@NotNull
public DomElement getInvocationElement() {
return getDomElement();
}
});
if (type != null) {
value = type.getCanonicalText();
}
super.setValue(value);
}
Aggregations