List of usage examples for java.beans PropertyEditor getJavaInitializationString
String getJavaInitializationString();
From source file:org.eclipse.wb.internal.swing.model.property.editor.beans.PropertyEditorWrapper.java
private static void updatePropertyValue(Property property, java.beans.PropertyEditor propertyEditor) throws Exception { Object value = propertyEditor.getValue(); String source = propertyEditor.getJavaInitializationString(); GenericProperty genericProperty = (GenericProperty) property; genericProperty.setExpression(source, value); }