mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-16 14:23:28 +07:00
StandardResourceProvider: javadoc
GitOrigin-RevId: 1280c94ae16c89d01634bcd1e869700b0f4fdff2
This commit is contained in:
committed by
intellij-monorepo-bot
parent
dab8134a9b
commit
b68f555fc9
@@ -1,30 +1,20 @@
|
||||
/*
|
||||
* Copyright 2000-2012 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.
|
||||
* You may obtain a copy of the License at
|
||||
*
|
||||
* http://www.apache.org/licenses/LICENSE-2.0
|
||||
*
|
||||
* Unless required by applicable law or agreed to in writing, software
|
||||
* distributed under the License is distributed on an "AS IS" BASIS,
|
||||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
* See the License for the specific language governing permissions and
|
||||
* limitations under the License.
|
||||
*/
|
||||
|
||||
// Copyright 2000-2021 JetBrains s.r.o. Use of this source code is governed by the Apache 2.0 license that can be found in the LICENSE file.
|
||||
package com.intellij.javaee;
|
||||
|
||||
import com.intellij.openapi.extensions.ExtensionPointName;
|
||||
|
||||
/**
|
||||
* Allows adding/ignoring standard resources.
|
||||
* <p>
|
||||
* Consider using {@link StandardResourceEP} when only adding is required.
|
||||
* </p>
|
||||
*
|
||||
* @author Dmitry Avdeev
|
||||
* @see StandardResourceEP
|
||||
* @see ExternalResourceManager
|
||||
*/
|
||||
public interface StandardResourceProvider {
|
||||
|
||||
ExtensionPointName<StandardResourceProvider> EP_NAME = ExtensionPointName.create("com.intellij.standardResourceProvider");
|
||||
|
||||
|
||||
void registerResources(ResourceRegistrar registrar);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user