ExternalResourceManagerExImpl — store in own javaeeExternalResources.xml

This commit is contained in:
Vladimir Krivosheev
2016-01-28 15:41:51 +01:00
parent 5445d6c029
commit af143a0209
2 changed files with 7 additions and 3 deletions
@@ -344,4 +344,5 @@ exportable.ProjectManager.presentable.name=Default project
exportable.com.intellij.ide.ui.customization.CustomActionsSchema.presentable.name=Menus and toolbars customization
exportable.ActionMacroManager.presentable.name=Macros
exportable.ImportFilteringUsageViewSetting.presentable.name=Usage View: Imports
exportable.XPathView.XPathViewPlugin.presentable.name=XPath Viewer
exportable.XPathView.XPathViewPlugin.presentable.name=XPath Viewer
exportable.ExternalResourceManagerImpl.presentable.name=Java EE External Resources
@@ -1,5 +1,5 @@
/*
* Copyright 2000-2015 JetBrains s.r.o.
* Copyright 2000-2016 JetBrains s.r.o.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
@@ -53,7 +53,10 @@ import java.util.*;
@State(
name = "ExternalResourceManagerImpl",
storages = {@Storage(file = StoragePathMacros.APP_CONFIG + "/other.xml")}
storages = {
@Storage(file = "javaeeExternalResources.xml"),
@Storage(file = "other.xml", deprecated = true)
}
)
public class ExternalResourceManagerExImpl extends ExternalResourceManagerEx implements PersistentStateComponent<Element> {
private static final Logger LOG = Logger.getInstance(ExternalResourceManagerExImpl.class);