fix Tag visibility

GitOrigin-RevId: a5241ec67b1377523443d84e60b3225e82d7b929
This commit is contained in:
Vladimir Krivosheev
2025-02-18 09:51:50 +01:00
committed by intellij-monorepo-bot
parent 730d28733f
commit 8707c636a2
6 changed files with 24 additions and 12 deletions

View File

@@ -1,8 +1,9 @@
// Copyright 2000-2024 JetBrains s.r.o. and contributors. Use of this source code is governed by the Apache 2.0 license.
// Copyright 2000-2025 JetBrains s.r.o. and contributors. Use of this source code is governed by the Apache 2.0 license.
package com.intellij.structuralsearch;
import com.intellij.ide.highlighter.JavaFileType;
import com.intellij.structuralsearch.plugin.ui.Configuration;
import org.jetbrains.annotations.ApiStatus;
import org.jetbrains.annotations.NotNull;
import static com.intellij.structuralsearch.PredefinedConfigurationUtil.createConfiguration;
@@ -11,7 +12,8 @@ import static com.intellij.structuralsearch.PredefinedConfigurationUtil.createLe
/**
* @author Bas Leijdekkers
*/
final class JavaPredefinedConfigurations {
@ApiStatus.Internal
public final class JavaPredefinedConfigurations {
public static @NotNull Configuration @NotNull [] createPredefinedTemplates() {
return new Configuration[]{
// Expression patterns

View File

@@ -126,7 +126,8 @@ public final class APIWrappers {
}
}
interface WrapperDelegateAccessor<T> {
@ApiStatus.Internal
public interface WrapperDelegateAccessor<T> {
T getWrapperDelegate();
}

View File

@@ -1,9 +1,11 @@
// Copyright 2000-2024 JetBrains s.r.o. and contributors. Use of this source code is governed by the Apache 2.0 license.
// Copyright 2000-2025 JetBrains s.r.o. and contributors. Use of this source code is governed by the Apache 2.0 license.
package org.jetbrains.jps.builders.java.dependencyView;
import org.jetbrains.annotations.ApiStatus;
import org.jetbrains.jps.builders.storage.BuildDataCorruptedException;
interface CloseableMaplet {
@ApiStatus.Internal
public interface CloseableMaplet {
/**
*/
void close() throws BuildDataCorruptedException;

View File

@@ -1,8 +1,9 @@
// Copyright 2000-2024 JetBrains s.r.o. and contributors. Use of this source code is governed by the Apache 2.0 license.
// Copyright 2000-2025 JetBrains s.r.o. and contributors. Use of this source code is governed by the Apache 2.0 license.
package org.jetbrains.jps.builders.java.dependencyView;
import com.intellij.util.io.DataExternalizer;
import com.intellij.util.io.DataInputOutputUtil;
import org.jetbrains.annotations.ApiStatus;
import org.jetbrains.annotations.NotNull;
import org.jetbrains.jps.builders.storage.BuildDataCorruptedException;
@@ -10,7 +11,8 @@ import java.io.DataInput;
import java.io.DataOutput;
import java.io.IOException;
final class ParamAnnotation implements RW.Savable {
@ApiStatus.Internal
public final class ParamAnnotation implements RW.Savable {
public static final ParamAnnotation[] EMPTY_ARRAY = new ParamAnnotation[0];
public final int paramIndex;

View File

@@ -1,8 +1,9 @@
// Copyright 2000-2024 JetBrains s.r.o. and contributors. Use of this source code is governed by the Apache 2.0 license.
// Copyright 2000-2025 JetBrains s.r.o. and contributors. Use of this source code is governed by the Apache 2.0 license.
package org.jetbrains.jps.builders.java.dependencyView;
import com.intellij.util.io.DataExternalizer;
import com.intellij.util.io.DataInputOutputUtil;
import org.jetbrains.annotations.ApiStatus;
import org.jetbrains.annotations.NotNull;
import org.jetbrains.jps.builders.storage.BuildDataCorruptedException;
import org.jetbrains.org.objectweb.asm.Type;
@@ -13,7 +14,8 @@ import java.io.IOException;
import java.util.Collection;
import java.util.Set;
final class TypeRepr {
@ApiStatus.Internal
public final class TypeRepr {
private static final byte PRIMITIVE_TYPE = 0x0;
private static final byte CLASS_TYPE = 0x1;
private static final byte ARRAY_TYPE = 0x2;
@@ -22,7 +24,8 @@ final class TypeRepr {
}
interface AbstractType extends RW.Savable {
@ApiStatus.Internal
public interface AbstractType extends RW.Savable {
AbstractType[] EMPTY_TYPE_ARRAY = new AbstractType[0];
void updateClassUsages(DependencyContext context, int owner, Set<? super UsageRepr.Usage> s);

View File

@@ -1,4 +1,4 @@
// Copyright 2000-2023 JetBrains s.r.o. and contributors. Use of this source code is governed by the Apache 2.0 license.
// Copyright 2000-2025 JetBrains s.r.o. and contributors. Use of this source code is governed by the Apache 2.0 license.
package git4idea.push;
import com.intellij.dvcs.DvcsUtil;
@@ -6,6 +6,7 @@ import com.intellij.dvcs.push.PushSource;
import com.intellij.openapi.util.NlsSafe;
import git4idea.GitLocalBranch;
import git4idea.GitTag;
import org.jetbrains.annotations.ApiStatus;
import org.jetbrains.annotations.NotNull;
import org.jetbrains.annotations.Nullable;
@@ -128,7 +129,8 @@ public abstract class GitPushSource implements PushSource {
}
}
static class Tag extends GitPushSource {
@ApiStatus.Internal
public static final class Tag extends GitPushSource {
private final @NotNull GitTag tag;
Tag(@NotNull GitTag tag) {