Eclipse
banny_le
这个作者很懒,什么都没留下…
展开
-
eclipse布局的layout和layout data
开发eclipse plugin有一段时间了,对于Widget的layout总是一知半解,最近的这个项目中已存在的代码布局使用FormLayout比较多一些,由于对这种布局不是很熟悉,经常使用的是GridLayout,不过为了重用别人的widgets,只能硬着头皮塞进自己的GridLayout中,GridLayout的child widget是可以用FormLayout布局的,以下便是这段时间各种原创 2013-09-17 18:13:24 · 2155 阅读 · 0 评论 -
programmatically实现打开workspace以外的files对应的editor
需求描述: 实时地远程获得json格式的内容,在本地以可编辑模式打开供用户修改并保存至远程服务器实现片段: 首先将获得的json内容保存至.metadata目录下,比如保存为in.json,然后在plugin.xml中定义in.json默认的editor: <editor name="In/Out Json Edito原创 2013-09-18 15:13:37 · 857 阅读 · 0 评论 -
How to load content from an IFile
Question: How to load content from an IFile in eclipse plugin project, and did not cause out of sync problemAnswer: See IFile.getContents(), setContents() and create() methods.原创 2013-10-09 17:24:40 · 800 阅读 · 0 评论