Home
IDEs Support (IntelliJ Platform) | JetBrains
Contact Support
Community
Sign in
Gregory Shrago
Total activity
512
Last activity
August 14, 2023 18:03
Member since
January 16, 2007 18:03
Following
0 users
Followed by
1 user
Votes
0
Subscriptions
214
Activity overview
Posts (3)
Comments (295)
Sort by recent activity
Recent activity
Votes
Created
October 31, 2008 13:46
Add reference that resolves to some DB PSI element.DB PSI is available via:DbPsiFacade.getInstance(project).getDataSources(..) etc.linux_china wrote:Today I upgraded iBATIS plugin to make it compat...
Community
IntelliJ IDEA Open API and Plugin Development
Some questions about SQL plugin for iBATIS plugin
0 votes
Created
October 30, 2008 11:43
Hello Taras,JPA and Hibernate models are exposed via persistence openapi which is packaged as PersistenceSupport plugin. There's persistence-openapi.jar with public interfaces/utility classes.JPA &...
Community
IntelliJ IDEA Open API and Plugin Development
Accessing Hibernate facet model
0 votes
Created
October 20, 2009 17:18
Spent 2 minutes on the following and it looks like everything works just fine:// jam classpublic class MappedPackageImpl implements JamElement { private final PsiPackage myPsiPackage; public Mapp...
Community
IntelliJ IDEA Open API and Plugin Development
Registering JAM w/ annotation for PsiPackageStatement in package-info.java
0 votes
Created
January 11, 2012 15:48
Hello Holger,I've just pushed simple language injection support to Grammar-Kit.Please have a look at this commit:https://github.com/JetBrains/Grammar-Kit/commit/cf5a6b3e9cc3b3b691be6865b7e499a33200...
Community
IntelliJ IDEA Open API and Plugin Development
language injection into string literals
0 votes
Created
January 12, 2012 12:40
Hello Holger,GeneratedParserUtilBase#addVariant collects values for error reporting as well as for optional parser-based completion.I'm sure you don't want to switch syntactic errors off so I've tu...
Community
IntelliJ IDEA Open API and Plugin Development
language injection into string literals
0 votes
Created
June 18, 2012 17:08
The latest binaries on the github have the following:1. "tokens" list attribute. To avoid rules that simply define tokens do the following (recommended) :{ // old way, still supported but may b...
Community
IntelliJ IDEA Open API and Plugin Development
[ANN] Grammar-Kit: generate parser from grammar
0 votes
Created
June 21, 2012 14:58
Consider the following case:repetition ::= ( element ) *recoverUntil should always be used on the "element" and not on the "repetition" itself.So in your case:module_body ::= (module | data_definit...
Community
IntelliJ IDEA Open API and Plugin Development
[ANN] Grammar-Kit: generate parser from grammar
0 votes
Created
July 23, 2012 16:58
You can try IntelliLang language injection approach.I've just pushed a small fix to to IDEA 12 that makes this possible:otherwise you can write your own LanguageInjector.Something like:package foo;...
Community
IntelliJ IDEA Open API and Plugin Development
plugin development : modify javascript syntax highlighting rules
0 votes
Created
January 31, 2013 10:16
I use separate rules for valid and unclosed strings and other constructs. Something like that:STRING_SINGLELINE=\' (\'\'|[^\'\r\n]) * \'STRING_SINGLELINE_BAD=\' (\'\'|[^\'\r\n]) * Seems to make eve...
Community
IntelliJ IDEA Open API and Plugin Development
Syntax Highlighting gets stuck
0 votes
Created
January 11, 2013 19:40
If ColumnInfo<Item, Aspect> is defined then:1. valueOf() should always be of type Aspect and the result of valueOf() goes to TableCellRenderer.getTableCellRendererComponent call as value2. If yo...
Community
IntelliJ IDEA Open API and Plugin Development
About ColumnInfo
0 votes
«
First
‹
Previous
Next
›
Last
»