New 13.x APIs for PropertiesUtil / PropertiesFile
Im trying to build a plugin for Idea 13.x that made use of
import com.intellij.lang.properties.PropertiesUtil;
import com.intellij.lang.properties.psi.PropertiesFile;
import com.intellij.lang.properties.IProperty;
Is there a migration guide for plugin authors? If not, what APIs should I use to replace the above?
请先登录再写评论。
All of the APIs you mention are still there. Note that you need to add the jar file of the properties plugin to the classpath of your IntelliJ IDEA SDK and to add a depends tag to your plugin.xml.
Many thanks.