Package com.dci.intellij.dbn.data.editor.ui

Examples of com.dci.intellij.dbn.data.editor.ui.UserValueHolder


public class TextEditorDialog extends DBNDialog implements DocumentListener {
    private TextEditorForm mainForm;

    private TextEditorDialog(Project project, TextEditorAdapter textEditorAdapter) throws SQLException {
        super(project, "Edit LOB content (column " + textEditorAdapter.getUserValueHolder().getName() + ")", true);
        UserValueHolder userValueHolder = textEditorAdapter.getUserValueHolder();
        mainForm = new TextEditorForm(this, userValueHolder, textEditorAdapter);
        getCancelAction().putValue(Action.NAME, "Close");
        getOKAction().setEnabled(false);
        setModal(true);
        init();
View Full Code Here

TOP

Related Classes of com.dci.intellij.dbn.data.editor.ui.UserValueHolder

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.