com.intellij.openapi.util.UserDataHolderBase Java Examples
The following examples show how to use
com.intellij.openapi.util.UserDataHolderBase.
You can vote up the ones you like or vote down the ones you don't like,
and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example #1
Source File: CsvTableEditor.java From intellij-csv-validator with Apache License 2.0 | 5 votes |
public CsvTableEditor(@NotNull Project projectArg, @NotNull VirtualFile fileArg) { this.project = projectArg; this.file = fileArg; this.userDataHolder = new UserDataHolderBase(); this.changeSupport = new PropertyChangeSupport(this); this.dataManagement = new TableDataHandler(this, TableDataHandler.MAX_SIZE); }
Example #2
Source File: LSPPsiElement.java From lsp4intellij with Apache License 2.0 | 4 votes |
public void copyCopyableDataTo(UserDataHolderBase clone) { clone.putUserData(COPYABLE_USER_MAP_KEY, getUserData(COPYABLE_USER_MAP_KEY)); }