eclipse-plugin

Integrate window tester with eclipse for testing UI

亡梦爱人 提交于 2019-12-29 09:35:11
问题 We are planning to automate testing of my eclipse application GUI using window tester. Version of eclipse is oxygen. Please inform me how to integrate window tester with eclipse application. I do not see any window tester plugin in eclipse market place. If not, Which GUI testing framework can i use to test my eclipse application. Thanks in Advance. 回答1: I have personally used first two types of the frameworks: SWTBot RCPTT Jubula RedDeer RCPTT is focused on creating and running UI/System test

Launching Eclipse plug in template

半腔热情 提交于 2019-12-29 09:22:26
问题 I created a Eclipse plug-in project by selecting a plug-in template provides by the eclipse. Then i ran the plug-in it opened another eclipse and the plug-in executed there.Why so? is the plugin taking eclipse's application class to create workbench? 回答1: As an elaboration of "If you want to run the plugin in your main workspace you will have to export the plugin and install it in your main Eclipse." that @greg-449 had in his answer. You can do this. Step 1 - Export your plugin From the File

How to list all properties exposed by a Java class and its ancestors in Eclipse?

你。 提交于 2019-12-29 06:47:12
问题 Given a single Java class I'd like to be able to list all properties that are exposed in all ancestors and recursively traverse all their exposed properties (i.e. public or with getters/setters) in the same way. Easier to explain with a simple example: public class BaseClass1 { private int intProperty; // has getter and setter (not shown) } public class SubClass1 extends BaseClass1 { private int privateSoNotListed; public SubClass2 subClass2Property; } public class BaseClass2 { public String

Installing JSDT jQuery plugin in Eclipse Kepler 4.3

此生再无相见时 提交于 2019-12-29 04:59:26
问题 I've downloaded Eclipse Kepler 4.3 from official site in here. And installed PDT plugin successfully ( Eclipse -> Help -> Install new software ). The problem : I need to install JSDT jQuery plugin. I have tried : Help -> Eclipse MarketPlace -> JSDT jQuery (Install) But get me following error : No repository found at https://svn.codespot.com/a/eclipselabs.org/jsdt-jquery/updatesite Thanks in advance. 回答1: Method 1 : Run Eclipse Help -> Install New Software Copy this link address and paste it

Find eclipse setting name to set it in plugin_customization.ini

扶醉桌前 提交于 2019-12-29 02:03:15
问题 I want to add some default values for an eclipse plugin delivered as a whole eclipse product through plugin_customization.ini . If I want by default to have the Build automatically disabled, I write in plugin_customization.ini the folowing line: org.eclipse.core.resources/description.autobuilding=false How can I find the org.eclipse..../.../ setting name for disabling the spell checking for example? What about any other setting? 回答1: The settings are stored in .pref files in the workspace

Is there a Gradle plugin for Eclipse Luna?

╄→尐↘猪︶ㄣ 提交于 2019-12-28 20:34:03
问题 I'm trying to integrate Eclipse Luna with Gradle . Eclipse Integration Gradle GitHub page includes instructions for Installing Gradle Tooling from update site. I followed the instructions for the release (stable) version. After I selected all the components (as shown below) I proceeded with installation. It didn't go as expected and brought me to the Install Remediation Page (below) that showed that only Gradle IDE component could be installed. ( Click here for larger image). At this point I

Eclipse-plugin how to get current text editor cursor position

北城余情 提交于 2019-12-28 06:49:08
问题 I try to show popup dialog at text cursor position of an editor. How can I get text cursor position in pixels of the active editor (Point) and a show popup dialog at this point? 回答1: I'm not exactly sure what do you mean under "show popup dialog at this point", but do something like this: IEditorPart editor = PlatformUI.getWorkbench().getActiveWorkbenchWindow().getActivePage().getActiveEditor(); if (editor instanceof ITextEditor) { ISelectionProvider selectionProvider = ((ITextEditor)editor)

Clearcase plugin for eclipse usage

僤鯓⒐⒋嵵緔 提交于 2019-12-28 03:04:07
问题 I am new to clearcase and software development using version control system. I am using clearcase for version management currently. I use eclipse IDE for software development. I installed clearcase plugin for eclipse over the internet from sourceforge.net website. Some how the plugin does not work. The softwares that i installed are: IBM Rational Clearcase 7.0, Eclipse Galileo 3.5 and clearcase 2.2.3 plugin for it. I am not able to checkin or checkout files using the plugin. Can some one give

Where did the Apache Derby Eclipse plug-in go?

南楼画角 提交于 2019-12-28 02:11:27
问题 Edit : According to the Derby community the Eclipse plug-in won't be maintained nor built automatically along the Derby project. But is there anybody still using this plug-in? Because if so, is there a place he/she publishes the actual builds - which (hopefully) would run under Eclipse Juno? Or, if this is a real dead end, what are the alternatives? The original problem Using jdk1.7.0_03 Eclipse IDE for Java EE Developers (Win32) version Juno (build from 2012/06/14) derby-core-plugin 10.8.2

Cannot load 64-bit SWT libraries on 32-bit JVM ( replacing SWT file )

六月ゝ 毕业季﹏ 提交于 2019-12-28 02:06:19
问题 I'm trying to debug this problem but not sure where exactly i need to replace SWT jar file for Eclipse. Current System Config: Eclipse Helios 3.6 - 32 Bit JDK 1.6 JVM - 32 Bit Windows 7 - 64 Bit Error Message: java.lang.UnsatisfiedLinkError: Cannot load 64-bit SWT libraries on 32-bit JVM at org.eclipse.swt.internal.Library.loadLibrary(Library.java:194) at org.eclipse.swt.internal.Library.loadLibrary(Library.java:174) at org.eclipse.swt.internal.C.<clinit>(C.java:21) at org.eclipse.swt.widgets