Alexander Zlatoverov

- 活动总数 68
- 最后的活动
- 成员加入日期
- 关注 0 名用户
- 关注者数 0 名用户
- 投票数 14
- 订阅数 18
-
已编辑于 How to remove or replace FileEditor from EditorComposite
已回答I have a FileEditorProvider with a HIDE_DEFAULT_EDITOR policy. But my logic of the FileEditorProvider#accept method is related to a dumb mode, and my FileEditorProvider itself is not implemented Du... -
已编辑于 How to get a list of libraries when creating a project?
已回答I have a component. public class MyComponent implements ProjectComponent { private Project project; @Override public void projectOpened() { StartupManager.getInstance(project).runWh... -
已编辑于 Sync intention menu contributor
已回答Hi! https://github.com/JetBrains/intellij-community/commit/ce7801efc9ffa237e3b63593ec37bdb7d71b7f4a#diff-eab36da2303724d6d2162347da339119L16 Why it was decided not to introduce a new extension poin... -
创建于 Please add 2019.2 EAP artifacts to www.jetbrains.com/intellij-repository/
已回答Artifacts are not found when trying to build a project with version 2019.2 EAP. -
创建于 Custom settings for xml formatting
I can not accept custom settings for reformatting the xml file. CodeStyleSettings settings = CodeStyle.getSettings(project);CodeStyleSettings cloneSettings = settings.clone();XmlCodeStyleSettings x... -
已编辑于 Type migration issue
已回答Migrating type annotated as NotNull(javax.validation.constraints.NotNull) the default type to migrate to looks too odd. Removing all and typing new type NotNull goes away. If you leave the annotat... -
已编辑于 How to get arguments for enum constant from com.intellij.psi.impl.compiled.ClsEnumConstantImpl
已回答I need to get the list of parameters from the enumeration of library. For example: Enum source public enum IntEnum { VALUE_(3); private Integer id; IntEnum(Integer value) { this.id ... -
创建于 Processing library with custom artifact type
已回答The project has a library whose artifacts are supplied as *.jar and as *.zip. Can the artifact with the *.zip extension be displayed in the tree in the ‘External Libraries’ section of the Gradle no... -
创建于 ReformatCodeProcessor with custom settings
I create a file and want it to be formatted. For example, so that there are no empty lines. How can I use ReformatCodeProcessor with custom settings? Something like that: CodeStyleSettings settings... -
创建于 Add PsiWhiteSpace before XmlAttribute
If I write the following code: PsiElement whiteSpaceFromText = PsiParserFacade.SERVICE.getInstance(project).createWhiteSpaceFromText("\n");xmlTag.addBefore(whiteSpaceFromText, xmlAttribute); IDEA w...