The Java class com.intellij.psi.PsiFile.getViewProvider is a part of the IntelliJ Platform, specifically the PSI (Program Structure Interface) framework for working with source code in various programming languages. This class represents a file in the project being developed and provides a view into the content and structure of the file. It allows developers to access and manipulate the PSI tree, which represents the hierarchical structure of the code contained in the file. The getViewProvider method returns the view provider associated with the file, which provides access to the underlying PSI tree and other related information about the file's content and structure.
Java PsiFile.getViewProvider - 30 examples found. These are the top rated real world Java examples of com.intellij.psi.PsiFile.getViewProvider extracted from open source projects. You can rate examples to help us improve the quality of examples.