Alexander Zlatoverov
- 活动总数 68
- 最后的活动
- 成员加入日期
- 关注 0 名用户
- 关注者数 0 名用户
- 投票数 14
- 订阅数 18
-
创建于 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... -
创建于 Deploy plugin for specific operating systems
已回答Hi! 1. I have a plugin that has a different set of libraries for different operating systems. How do I deploy a plugin for a specific operating system?2. If this is not possible, is there any metho... -
创建于 How to add custom reference provider for PsiField
Hi! I'm trying to add ReferenceProvider for PsiField as follows: com.intellij.psi.PsiReferenceRegistrar.registerReferenceProvider(new com.intellij.patterns.PsiFieldPattern(), new MyReferenceProvide... -
创建于 How to prevent the move from the invalid FileEditorProvider?
For the java class, there is an additional FileEditorProvider (Properties) when you switch to the tab `Text`, the value is committed (to PsiClass) and validated from the FileEditorProvider (Propert... -
已编辑于 How to make caching a model built from a PsiElement
Task: I have created model classes from a PsiElement. For example: Model - JPA Entity, PsiElement - PsiClass. The model has (cross)reference to other the JPA Entity, for instance, attribute type ...