mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-16 14:23:28 +07:00
fix Tag visibility
GitOrigin-RevId: a5241ec67b1377523443d84e60b3225e82d7b929
This commit is contained in:
committed by
intellij-monorepo-bot
parent
730d28733f
commit
8707c636a2
@@ -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;
|
package com.intellij.structuralsearch;
|
||||||
|
|
||||||
import com.intellij.ide.highlighter.JavaFileType;
|
import com.intellij.ide.highlighter.JavaFileType;
|
||||||
import com.intellij.structuralsearch.plugin.ui.Configuration;
|
import com.intellij.structuralsearch.plugin.ui.Configuration;
|
||||||
|
import org.jetbrains.annotations.ApiStatus;
|
||||||
import org.jetbrains.annotations.NotNull;
|
import org.jetbrains.annotations.NotNull;
|
||||||
|
|
||||||
import static com.intellij.structuralsearch.PredefinedConfigurationUtil.createConfiguration;
|
import static com.intellij.structuralsearch.PredefinedConfigurationUtil.createConfiguration;
|
||||||
@@ -11,7 +12,8 @@ import static com.intellij.structuralsearch.PredefinedConfigurationUtil.createLe
|
|||||||
/**
|
/**
|
||||||
* @author Bas Leijdekkers
|
* @author Bas Leijdekkers
|
||||||
*/
|
*/
|
||||||
final class JavaPredefinedConfigurations {
|
@ApiStatus.Internal
|
||||||
|
public final class JavaPredefinedConfigurations {
|
||||||
public static @NotNull Configuration @NotNull [] createPredefinedTemplates() {
|
public static @NotNull Configuration @NotNull [] createPredefinedTemplates() {
|
||||||
return new Configuration[]{
|
return new Configuration[]{
|
||||||
// Expression patterns
|
// Expression patterns
|
||||||
|
|||||||
@@ -126,7 +126,8 @@ public final class APIWrappers {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
interface WrapperDelegateAccessor<T> {
|
@ApiStatus.Internal
|
||||||
|
public interface WrapperDelegateAccessor<T> {
|
||||||
T getWrapperDelegate();
|
T getWrapperDelegate();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -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;
|
package org.jetbrains.jps.builders.java.dependencyView;
|
||||||
|
|
||||||
|
import org.jetbrains.annotations.ApiStatus;
|
||||||
import org.jetbrains.jps.builders.storage.BuildDataCorruptedException;
|
import org.jetbrains.jps.builders.storage.BuildDataCorruptedException;
|
||||||
|
|
||||||
interface CloseableMaplet {
|
@ApiStatus.Internal
|
||||||
|
public interface CloseableMaplet {
|
||||||
/**
|
/**
|
||||||
*/
|
*/
|
||||||
void close() throws BuildDataCorruptedException;
|
void close() throws BuildDataCorruptedException;
|
||||||
|
|||||||
@@ -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;
|
package org.jetbrains.jps.builders.java.dependencyView;
|
||||||
|
|
||||||
import com.intellij.util.io.DataExternalizer;
|
import com.intellij.util.io.DataExternalizer;
|
||||||
import com.intellij.util.io.DataInputOutputUtil;
|
import com.intellij.util.io.DataInputOutputUtil;
|
||||||
|
import org.jetbrains.annotations.ApiStatus;
|
||||||
import org.jetbrains.annotations.NotNull;
|
import org.jetbrains.annotations.NotNull;
|
||||||
import org.jetbrains.jps.builders.storage.BuildDataCorruptedException;
|
import org.jetbrains.jps.builders.storage.BuildDataCorruptedException;
|
||||||
|
|
||||||
@@ -10,7 +11,8 @@ import java.io.DataInput;
|
|||||||
import java.io.DataOutput;
|
import java.io.DataOutput;
|
||||||
import java.io.IOException;
|
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 static final ParamAnnotation[] EMPTY_ARRAY = new ParamAnnotation[0];
|
||||||
|
|
||||||
public final int paramIndex;
|
public final int paramIndex;
|
||||||
|
|||||||
@@ -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;
|
package org.jetbrains.jps.builders.java.dependencyView;
|
||||||
|
|
||||||
import com.intellij.util.io.DataExternalizer;
|
import com.intellij.util.io.DataExternalizer;
|
||||||
import com.intellij.util.io.DataInputOutputUtil;
|
import com.intellij.util.io.DataInputOutputUtil;
|
||||||
|
import org.jetbrains.annotations.ApiStatus;
|
||||||
import org.jetbrains.annotations.NotNull;
|
import org.jetbrains.annotations.NotNull;
|
||||||
import org.jetbrains.jps.builders.storage.BuildDataCorruptedException;
|
import org.jetbrains.jps.builders.storage.BuildDataCorruptedException;
|
||||||
import org.jetbrains.org.objectweb.asm.Type;
|
import org.jetbrains.org.objectweb.asm.Type;
|
||||||
@@ -13,7 +14,8 @@ import java.io.IOException;
|
|||||||
import java.util.Collection;
|
import java.util.Collection;
|
||||||
import java.util.Set;
|
import java.util.Set;
|
||||||
|
|
||||||
final class TypeRepr {
|
@ApiStatus.Internal
|
||||||
|
public final class TypeRepr {
|
||||||
private static final byte PRIMITIVE_TYPE = 0x0;
|
private static final byte PRIMITIVE_TYPE = 0x0;
|
||||||
private static final byte CLASS_TYPE = 0x1;
|
private static final byte CLASS_TYPE = 0x1;
|
||||||
private static final byte ARRAY_TYPE = 0x2;
|
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];
|
AbstractType[] EMPTY_TYPE_ARRAY = new AbstractType[0];
|
||||||
|
|
||||||
void updateClassUsages(DependencyContext context, int owner, Set<? super UsageRepr.Usage> s);
|
void updateClassUsages(DependencyContext context, int owner, Set<? super UsageRepr.Usage> s);
|
||||||
|
|||||||
@@ -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;
|
package git4idea.push;
|
||||||
|
|
||||||
import com.intellij.dvcs.DvcsUtil;
|
import com.intellij.dvcs.DvcsUtil;
|
||||||
@@ -6,6 +6,7 @@ import com.intellij.dvcs.push.PushSource;
|
|||||||
import com.intellij.openapi.util.NlsSafe;
|
import com.intellij.openapi.util.NlsSafe;
|
||||||
import git4idea.GitLocalBranch;
|
import git4idea.GitLocalBranch;
|
||||||
import git4idea.GitTag;
|
import git4idea.GitTag;
|
||||||
|
import org.jetbrains.annotations.ApiStatus;
|
||||||
import org.jetbrains.annotations.NotNull;
|
import org.jetbrains.annotations.NotNull;
|
||||||
import org.jetbrains.annotations.Nullable;
|
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;
|
private final @NotNull GitTag tag;
|
||||||
|
|
||||||
Tag(@NotNull GitTag tag) {
|
Tag(@NotNull GitTag tag) {
|
||||||
|
|||||||
Reference in New Issue
Block a user