Package com.dci.intellij.dbn.object.common

Examples of com.dci.intellij.dbn.object.common.DBObjectBundle


            String qualifiedName = object.getQualifiedNameWithType() + "." + getName();
            return qualifiedName.hashCode();
        }

        if (parent instanceof DBObjectBundle) {
            DBObjectBundle objectBundle = (DBObjectBundle) parent;
            String qualifiedName = objectBundle.getConnectionHandler().getName() + "." + getName();
            return qualifiedName.hashCode();
        }

        return super.hashCode();
    }
View Full Code Here


            DBObject parentObject = (DBObject) parent;
            return NavigationPsiCache.getPsiDirectory(parentObject).getVirtualFile();
        }

        if (parent instanceof DBObjectBundle) {
            DBObjectBundle objectBundle = (DBObjectBundle) parent;
            return NavigationPsiCache.getPsiDirectory(objectBundle.getConnectionHandler()).getVirtualFile();

        }

        return null;
    }
View Full Code Here

            DBObject parentObject = (DBObject) parent;
            return NavigationPsiCache.getPsiDirectory(parentObject);
        }

        if (parent instanceof DBObjectBundle) {
            DBObjectBundle objectBundle = (DBObjectBundle) parent;
            return NavigationPsiCache.getPsiDirectory(objectBundle.getConnectionHandler());
        }

        return null;
    }
View Full Code Here

TOP

Related Classes of com.dci.intellij.dbn.object.common.DBObjectBundle

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.