接口 UserDataHolderUnprotected

所有已知实现类:
UnprotectedUserDataHolder

@Deprecated @ScheduledForRemoval public interface UserDataHolderUnprotected
已过时。
use UserDataHolder.
This interface is extended only by PsiBuilder which is used in a single thread always. UserDataHolder doesn't make any restrictions on thread-safety, so it's now used in PsiBuilder instead, and this interface is left for binary compatibility.
Like UserDataHolder, but stores data in non-thread-safe way. Should not be accessed across threads.
  • 方法详细资料

    • getUserDataUnprotected

      @Deprecated @Nullable <T> T getUserDataUnprotected(@NotNull @NotNull Key<T> key)
      已过时。
    • putUserDataUnprotected

      @Deprecated <T> void putUserDataUnprotected(@NotNull @NotNull Key<T> key, @Nullable T value)
      已过时。