主页
IDEs Support (IntelliJ Platform) | JetBrains
联系支持服务
社区
登录
Gregory Shrago
活动总数
512
最后的活动
2023年08月14日 18:03
成员加入日期
2007年01月16日 18:03
关注
0 名用户
关注者数
1 名用户
投票数
0
订阅数
214
活动概览
帖子(3)
评论(295)
按最近的活动排序
最近的活动
投票数
创建于
2008年10月31日 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...
社区
IntelliJ IDEA Open API and Plugin Development
Some questions about SQL plugin for iBATIS plugin
0 票
创建于
2008年10月30日 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 &...
社区
IntelliJ IDEA Open API and Plugin Development
Accessing Hibernate facet model
0 票
创建于
2009年10月20日 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...
社区
IntelliJ IDEA Open API and Plugin Development
Registering JAM w/ annotation for PsiPackageStatement in package-info.java
0 票
创建于
2012年01月11日 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...
社区
IntelliJ IDEA Open API and Plugin Development
language injection into string literals
0 票
创建于
2012年01月12日 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...
社区
IntelliJ IDEA Open API and Plugin Development
language injection into string literals
0 票
创建于
2012年06月18日 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...
社区
IntelliJ IDEA Open API and Plugin Development
[ANN] Grammar-Kit: generate parser from grammar
0 票
创建于
2012年06月21日 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...
社区
IntelliJ IDEA Open API and Plugin Development
[ANN] Grammar-Kit: generate parser from grammar
0 票
创建于
2012年07月23日 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;...
社区
IntelliJ IDEA Open API and Plugin Development
plugin development : modify javascript syntax highlighting rules
0 票
创建于
2013年01月31日 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...
社区
IntelliJ IDEA Open API and Plugin Development
Syntax Highlighting gets stuck
0 票
创建于
2013年01月11日 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...
社区
IntelliJ IDEA Open API and Plugin Development
About ColumnInfo
0 票
«
第一页
‹
上一页
下一页
›
最后
»