diff --git a/platform/core-api/src/com/intellij/openapi/startup/StartupActivity.java b/platform/core-api/src/com/intellij/openapi/startup/StartupActivity.java index 4cc9c6ce5f3d..197b1512053b 100644 --- a/platform/core-api/src/com/intellij/openapi/startup/StartupActivity.java +++ b/platform/core-api/src/com/intellij/openapi/startup/StartupActivity.java @@ -1,4 +1,4 @@ -// 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. +// Copyright 2000-2022 JetBrains s.r.o. and contributors. Use of this source code is governed by the Apache 2.0 license. package com.intellij.openapi.startup; import com.intellij.ide.util.RunOnceUtil; @@ -8,19 +8,18 @@ import org.jetbrains.annotations.NotNull; /** * Runs an activity on project open. + *
+ * If activity implements {@link com.intellij.openapi.project.DumbAware}, it is executed after project is opened + * on a background thread with no visible progress indicator. Otherwise, it is executed on EDT when indexes are ready. + *
+ *
* See docs for details.
*
* @see StartupManager
* @see RunOnceUtil
*/
public interface StartupActivity {
- /**
- * If activity implements {@link com.intellij.openapi.project.DumbAware}, it is executed after project is opened
- * on a background thread with no visible progress indicator. Otherwise, it is executed on EDT when indexes are ready.
- *
- * @see StartupManager#registerPostStartupActivity
- * @see DumbAware
- */
+
ExtensionPointName