I created PersistentStateComponent which looks like this
@State(name = "MyState", storages = [Storage("my_state.xml")])
class MyStatePersistence : PersistentStateComponent<MyState> {
...
}
and I registered it in plugin.xml:
<extensions defaultExtensionNs="com.intellij">
<applicationService serviceImplementation="com.example.MyStatePersistence"/>
</extensions>
I can't figure out where is file my_state.xml
, which I specified. Is it located in project or what?