提交 4c1267da 编写于 作者: S serge-rider

#403 Value extraction

上级 3453199c
......@@ -56,6 +56,6 @@ public class ComplexValueInlineEditor extends BaseValueEditor<Tree> {
@Override
public Object extractEditorValue()
{
return editor.getInput();
return editor.extractValue();
}
}
......@@ -204,6 +204,10 @@ public class ComplexObjectEditor extends TreeViewer {
if (oldEditor != null) oldEditor.dispose();
}
public Object extractValue() {
return getInput();
}
private static class FieldInfo {
final DBSAttributeBase attribute;
Object value;
......@@ -295,6 +299,7 @@ public class ComplexObjectEditor extends TreeViewer {
((ArrayItem) this.item).value = value;
}
refresh(this.item);
//parentController.updateValue(getInput());
}
@Override
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册