Package com.dci.intellij.dbn.ddl.action

Examples of com.dci.intellij.dbn.ddl.action.AttachDDLFileAction


        SourceCodeFile sourcecodeFile = getSourcecodeFile(e);
        if (sourcecodeFile != null) {
            DBSchemaObject object = sourcecodeFile.getObject();
            actionGroup = new DefaultActionGroup();
            actionGroup.add(new CreateDDLFileAction(object));
            actionGroup.add(new AttachDDLFileAction(object));
            actionGroup.add(new DetachDDLFileAction(object));

            ListPopup popup = JBPopupFactory.getInstance().createActionGroupPopup(
                    "DDL File",
                    actionGroup,
View Full Code Here

TOP

Related Classes of com.dci.intellij.dbn.ddl.action.AttachDDLFileAction

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.