Examples of DBObjectRef


Examples of com.dci.intellij.dbn.object.lookup.DBObjectRef

            if (relevantPsiElement != null) {
                this.relevantPsiElement = relevantPsiElement;
                this.name = relevantPsiElement.getText();
            }
        }
        objectRef = new DBObjectRef(this);
    }
View Full Code Here

Examples of com.dci.intellij.dbn.object.lookup.DBObjectRef

        return objectRef;
    }

    protected DBObjectRef createRef() throws SQLException {
        checkConnection();
        return new DBObjectRef(this);
    }
View Full Code Here

Examples of com.dci.intellij.dbn.object.lookup.DBObjectRef

        }.start();
    }

    @NotNull
    public DatabaseEditableObjectFile findDatabaseFile(DBSchemaObject object) {
        DBObjectRef objectRef = object.getRef();
        DatabaseEditableObjectFile databaseFile = filesCache.get(objectRef);
        if (databaseFile == null ){
            databaseFile = createDatabaseFile(object);

            filesCache.put(objectRef, databaseFile);
View Full Code Here

Examples of com.dci.intellij.dbn.object.lookup.DBObjectRef

    public DBConnectionPsiDirectory getConnectionPsiDirectory() {
        return connectionPsiDirectory;
    }

    private synchronized DBObjectPsiFile lookupPsiFile(DBObject object) {
        DBObjectRef objectRef = object.getRef();
        DBObjectPsiFile psiFile = objectPsiFiles.get(objectRef);
        if (psiFile == null) {
            psiFile = new DBObjectPsiFile(object);
            objectPsiFiles.put(objectRef, psiFile);
        }
View Full Code Here

Examples of com.dci.intellij.dbn.object.lookup.DBObjectRef

        return psiFile;
    }

    private synchronized DBObjectPsiDirectory lookupPsiDirectory(DBObject object) {
        DBObjectRef objectRef = object.getRef();
        DBObjectPsiDirectory psiDirectory = objectPsiDirectories.get(objectRef);
        if (psiDirectory == null) {
            psiDirectory = new DBObjectPsiDirectory(objectRef);
            objectPsiDirectories.put(objectRef, psiDirectory);
        }
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. 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.