Package org.mevenide.idea.psi.project.impl

Examples of org.mevenide.idea.psi.project.impl.DefaultPsiProject


    public FileEditor createEditor(final Project pProject, final VirtualFile pPomFile) {
        final FileDocumentManager filedocMgr = FileDocumentManager.getInstance();
        final Document document = filedocMgr.getDocument(pPomFile);
        final XmlFile xmlFile = PsiUtils.findXmlFile(pProject, document);

        return new PomFileEditor(new DefaultPsiProject(xmlFile));
    }
View Full Code Here


            final XmlFile xmlFile = PsiUtils.findXmlFile(project, file);
            if (xmlFile == null)
                return null;

            psi = new DefaultPsiProject(xmlFile);
        }

        return psi;
    }
View Full Code Here

TOP

Related Classes of org.mevenide.idea.psi.project.impl.DefaultPsiProject

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.