Package com.intellij.openapi.vfs.pointers

Examples of com.intellij.openapi.vfs.pointers.VirtualFilePointerManager


    public VirtualFilePointer getScriptFile() {
        return scriptFile;
    }

    public void setScriptFile(final VirtualFile pScriptFilePointer) {
        final VirtualFilePointerManager mgr = VirtualFilePointerManager.getInstance();
        final VirtualFilePointer pointer = mgr.create(pScriptFilePointer, this);
        setScriptFile(pointer);
    }
View Full Code Here


    public VirtualFilePointer getPomFile() {
        return pomFile;
    }

    public void setPomFile(final VirtualFile pPomFilePointer) {
        final VirtualFilePointerManager mgr = VirtualFilePointerManager.getInstance();
        final VirtualFilePointer pointer = mgr.create(pPomFilePointer, this);
        setPomFile(pointer);
    }
View Full Code Here

TOP

Related Classes of com.intellij.openapi.vfs.pointers.VirtualFilePointerManager

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.