mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-27 10:03:11 +07:00
ExternalResourceManagerExImpl — store in own javaeeExternalResources.xml
This commit is contained in:
@@ -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);
|
||||
|
||||
Reference in New Issue
Block a user