mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-27 10:03:11 +07:00
IJPL-179169: annotate com.intellij.openapi.module.impl.ModuleImpl with @ApiStatus.Internal
GitOrigin-RevId: 640051688ee15e3e0e89bd32f8ec78bb8fd437d3
This commit is contained in:
committed by
intellij-monorepo-bot
parent
e0a5c168d7
commit
868dcec33c
@@ -13083,45 +13083,6 @@ c:com.intellij.openapi.module.impl.ModuleConfigurationStateImpl
|
||||
- getModifiableRootModel():com.intellij.openapi.roots.ModifiableRootModel
|
||||
- getModulesProvider():com.intellij.openapi.roots.ui.configuration.ModulesProvider
|
||||
- getProject():com.intellij.openapi.project.Project
|
||||
c:com.intellij.openapi.module.impl.ModuleImpl
|
||||
- com.intellij.openapi.Disposable
|
||||
- com.intellij.openapi.components.ComponentManager
|
||||
- com.intellij.openapi.module.Module
|
||||
- com.intellij.openapi.ui.Queryable
|
||||
- canStoreSettings():Z
|
||||
- clearScopesCache():V
|
||||
- dispose():V
|
||||
- f:getComponentManager():com.intellij.openapi.components.ComponentManager
|
||||
- pf:getImlFilePointer():com.intellij.openapi.vfs.pointers.VirtualFilePointer
|
||||
- getMessageBus():com.intellij.util.messages.MessageBus
|
||||
- getModuleContentScope():com.intellij.psi.search.GlobalSearchScope
|
||||
- getModuleContentWithDependenciesScope():com.intellij.psi.search.GlobalSearchScope
|
||||
- getModuleFile():com.intellij.openapi.vfs.VirtualFile
|
||||
- getModuleNioFile():java.nio.file.Path
|
||||
- getModuleProductionSourceScope():com.intellij.psi.search.GlobalSearchScope
|
||||
- getModuleRuntimeScope(Z):com.intellij.psi.search.GlobalSearchScope
|
||||
- getModuleScope():com.intellij.psi.search.GlobalSearchScope
|
||||
- getModuleScope(Z):com.intellij.psi.search.GlobalSearchScope
|
||||
- getModuleTestSourceScope():com.intellij.psi.search.GlobalSearchScope
|
||||
- getModuleTestsWithDependentsScope():com.intellij.psi.search.GlobalSearchScope
|
||||
- getModuleWithDependenciesAndLibrariesScope(Z):com.intellij.psi.search.GlobalSearchScope
|
||||
- getModuleWithDependenciesScope():com.intellij.psi.search.GlobalSearchScope
|
||||
- getModuleWithDependentsScope():com.intellij.psi.search.GlobalSearchScope
|
||||
- getModuleWithLibrariesScope():com.intellij.psi.search.GlobalSearchScope
|
||||
- getName():java.lang.String
|
||||
- getOptionValue(java.lang.String):java.lang.String
|
||||
- getProject():com.intellij.openapi.project.Project
|
||||
- pf:getStore():com.intellij.openapi.components.impl.stores.IComponentStore
|
||||
- getUserData(com.intellij.openapi.util.Key):java.lang.Object
|
||||
- init():V
|
||||
- isDisposed():Z
|
||||
- isLoaded():Z
|
||||
- markAsLoaded():V
|
||||
- putInfo(java.util.Map):V
|
||||
- putUserData(com.intellij.openapi.util.Key,java.lang.Object):V
|
||||
- rename(java.lang.String,Z):V
|
||||
- pf:setImlFilePointer(com.intellij.openapi.vfs.pointers.VirtualFilePointer):V
|
||||
- setOption(java.lang.String,java.lang.String):V
|
||||
c:com.intellij.openapi.module.impl.ModuleTypeManagerImpl
|
||||
- com.intellij.openapi.module.ModuleTypeManager
|
||||
- <init>():V
|
||||
|
||||
@@ -15,7 +15,6 @@ com/intellij/ide/util/gotoByName/SelectionPolicy
|
||||
com/intellij/internal/statistic/utils/PluginInfo
|
||||
com/intellij/openapi/actionSystem/ex/ActionRuntimeRegistrar
|
||||
com/intellij/openapi/client/ClientProjectSession
|
||||
com/intellij/openapi/components/impl/stores/IComponentStore
|
||||
com/intellij/openapi/editor/markup/AnalyzerStatus
|
||||
com/intellij/openapi/editor/markup/UIController
|
||||
com/intellij/openapi/roots/impl/storage/ClasspathStorageProvider
|
||||
|
||||
@@ -29,7 +29,8 @@ import com.intellij.util.xmlb.annotations.Property
|
||||
import org.jetbrains.annotations.ApiStatus
|
||||
import java.nio.file.Path
|
||||
|
||||
open class ModuleImpl @ApiStatus.Internal constructor(
|
||||
@ApiStatus.Internal
|
||||
open class ModuleImpl(
|
||||
name: String,
|
||||
project: Project,
|
||||
val componentManager: ComponentManager,
|
||||
@@ -43,7 +44,6 @@ open class ModuleImpl @ApiStatus.Internal constructor(
|
||||
private var name: String? = null
|
||||
private val moduleScopeProvider: ModuleScopeProvider
|
||||
|
||||
@ApiStatus.Internal
|
||||
constructor(
|
||||
name: String,
|
||||
project: Project,
|
||||
@@ -88,7 +88,6 @@ open class ModuleImpl @ApiStatus.Internal constructor(
|
||||
private val isPersistent: Boolean
|
||||
get() = imlFilePointer != null
|
||||
|
||||
@get:ApiStatus.Internal
|
||||
override val delegateComponentManager: ComponentManagerEx
|
||||
get() = componentManager as ComponentManagerEx
|
||||
|
||||
|
||||
Reference in New Issue
Block a user