eclipse-plugin

Eclipse hangs while opening workspace after upgrading to GWT 2.0/Google app engine 1.2.8

和自甴很熟 提交于 2019-12-24 05:12:14
问题 After upgrading to the newest GWT/Google app engine I have problems opening my workspace in Eclipse. On startup, Eclipse hangs almost immediately and needs to be closed. This happens only in the workspace where I use GWT with app engine, and I weren't able to consistently reproduce it - sometimes it starts normally, and sometimes I need to kill the proces and restart it. There is nothing in Eclipse error log. Eclipse version is Galileo, running on Windows 7 RC. Anyone else had similar

Eclipse TFS plugin not detecting changes

ぃ、小莉子 提交于 2019-12-24 03:53:17
问题 I am using Eclipse Version: Neon.3 Release (4.6.3) , and have installed TFS plugin in it. When I am making any changes to the code, the changed files not show up in Included Changes in TFVC Pending Changes Tab , all the changed files show up there only after restart of the eclipse or manually clicking on Action -> Detect Local Changes . Anybody have solution to this problem, so that I dont have to restart eclipse or or manually clicking on Action -> Detect Local Changes and it detects it

Eclipse TFS plugin not detecting changes

丶灬走出姿态 提交于 2019-12-24 03:53:17
问题 I am using Eclipse Version: Neon.3 Release (4.6.3) , and have installed TFS plugin in it. When I am making any changes to the code, the changed files not show up in Included Changes in TFVC Pending Changes Tab , all the changed files show up there only after restart of the eclipse or manually clicking on Action -> Detect Local Changes . Anybody have solution to this problem, so that I dont have to restart eclipse or or manually clicking on Action -> Detect Local Changes and it detects it

Add and display a new FormPage to a FormEditor using a command

匆匆过客 提交于 2019-12-24 03:32:12
问题 I have an Eclipse RCP Standalone Application using Eclipse 3.6. I have implemented a FormEditor and a FormPage for that (multipage) FormEditor. On that first FormPage is a Button that has a Command which calculate some data and should open a second FormPage with the results. The results are calculated and the second FormPage is showing the results and added to the FormEditor properly. My problem is that only a new tab appears in the FormEditor. I want that the second FormPage is shown

Is there a way to access Stata from eclipse?

房东的猫 提交于 2019-12-24 03:18:06
问题 … similar to the StatET plugin that allows you to run R code from Eclipse? I tried googling it but nothing useful has turned up. 回答1: None that I know. If you're a CLI junky or willing to use Emacs, you might find limited support through the ESS package and the ado-mode. This is what I used on Mac OS X when I want to run short snippet of code, or use Stata in batch mode, but there's no interactive graphical output (you can just save graphics as PDF as usual). The ado-mode provides basic

Adding Tomcat Plugin to Flex Builder

[亡魂溺海] 提交于 2019-12-24 02:42:56
问题 Is there anyway we can add the tomcat eclipse plugin to Adobe Flex Builder 3? In other words can we add all eclipse plugins to Flex Builder also? 回答1: Yes you can. And you don't have to download Eclipse. You can do this within Flex Builder. What you have to do is to go to help and then go to find and install. There you have to look for WTP (Web Tools Platform) plus WST ( Web Standard Tools) and once you select it it should say that there are some errors, but what you have to do is to select

How to Call Eclipse F5 Refresh Programmatically after Page Closes

倖福魔咒の 提交于 2019-12-24 02:18:48
问题 I have been trying to call refresh (F5) programmatically in eclipse and get a NotHandledException, handler not found error. Help would be much appreciated. In my class: NewPreferencePage extends PreferencePage implements IWorkbenchPreferencePage I have the following code: @Override public void dispose() { super.dispose(); final String COMMAND_ID = "org.eclipse.ui.file.refresh"; IHandlerService handlerService = PlatformUI.getWorkbench().getService(IHandlerService.class); try { handlerService

Load a class from the users workspace

丶灬走出姿态 提交于 2019-12-24 02:13:16
问题 I´m writing an eclipse plugin which should show some information of an enum class. The new view should show all enum constants and the assigned values. The enum values are calculated in the constructor somehow and it is not obvious in the editor which value they will have at runtime. So that´s the motivation for the plugin. I have tried to access the class which is opened in the editor by the eclipse AST. That way I´m getting the enum constant names of that file but not the assigned values at

Load a class from the users workspace

时间秒杀一切 提交于 2019-12-24 02:13:10
问题 I´m writing an eclipse plugin which should show some information of an enum class. The new view should show all enum constants and the assigned values. The enum values are calculated in the constructor somehow and it is not obvious in the editor which value they will have at runtime. So that´s the motivation for the plugin. I have tried to access the class which is opened in the editor by the eclipse AST. That way I´m getting the enum constant names of that file but not the assigned values at