eclipse-indigo

How to generate plug-in using .ecore metamodel

試著忘記壹切 提交于 2021-01-27 18:17:12
问题 I have 2 files, an ecore implementation metamodel and an e-Repository. The e-Repository is provided in EMF format together with the ecore implementation metamodel. I want to browse the contents of this repository and all I know is that I have to generate an Eclipse plugin from the implementation metamodel and with this plugin, I can open the repository and browse its content. But I have no idea how to generate the plugin and proceed with it. The ecore implementation metamodel was developed

Android Emulator Fails To Launch :: Failed to install apk on device 'emulator-5554': null

可紊 提交于 2020-01-16 03:40:07
问题 This is the background of my setup. Eclipse version Indigo. Windows 7 Since of two days I am failing to launch my applications on the emulator. I get the below error on DDMS Console. [2014-01-27 12:36:11 - NVProductManager] New emulator found: emulator-5554 [2014-01-27 12:36:11 - NVProductManager] Waiting for HOME ('android.process.acore') to be launched... [2014-01-27 12:36:57 - NVProductManager] HOME is up on device 'emulator-5554' [2014-01-27 12:36:57 - NVProductManager] Uploading

javah NullPointerException while using ANT in Eclipse Indigo

为君一笑 提交于 2020-01-07 05:38:28
问题 I'm using an ANT buildscript like so: <project basedir=".."> <property name="src" location="src"/> <property name="classes" location="classes" /> <property name="jnifiles" location="jnifiles" /> <target name="init"> <mkdir dir="${classes}" /> <mkdir dir="${jnifiles}" /> </target> <target name="compile" description="compile the source " > <javac srcdir="${src}" destdir="${classes}" includeantruntime="false" /> </target> <target name="generate-jni"> <javah destdir="${jnifiles}" > <class name=

JAVAHL (JNI) Not available

随声附和 提交于 2020-01-04 02:53:33
问题 Windows 7 64 Bits, Eclipse Indigo, SlickSVN 1.6.17 all installed with path to the libraries entered in windows. Why do I get the message JAVAHL (JNI) Not available and why does eclipse not load these libraries? 回答1: Have you tried installing SilkSVN as suggested on the subclipse official FAQ? Then on Eclipse/MyEclipse go to Window>Preferences>Team>SVN Change the client to SVNKit v1.XXX . That did the trick for me. 回答2: Did you close down Eclipse before running the SlikSVN 64 bit installation?

Open website from within eclipse's internal browser?

↘锁芯ラ 提交于 2020-01-03 17:19:28
问题 Could anyone help me with opening web pages from within Eclipse's internal (embedded) browser? I'm running Linux (tiling window manager) and Eclipse-3.7.2 side-by-side with browser and it's a pain. I want this to be able to comfortably read requirements from my code and at the same time code. This could be a question for superuser but it's Eclipse related so I guess I have better shot for an answer here. Thanks in advance. edit: I'm running gentoo linux and swt-3.7.1 with compiled in

initializationError with Eclipse and JUNIT4 when executing a single test

空扰寡人 提交于 2020-01-02 02:51:07
问题 My test class is this one: /** * The Class TestAddSubscriber. */ @RunWith(LabelledParameterized.class) public class TestAddSubscriber extends AbstractTestSubscriber { /** * Instantiates a new test add subscriber. * * @param label * the label * @param apiKey * the api key * @param userKey * the user key * @param customerId * the customer id */ public TestAddSubscriber(String label, String apiKey, String userKey, int customerId) { super(label, apiKey, userKey, customerId); } /** * @see com

GAE getting started in Java, Eclipse Indigo - can't compile as 1.6

血红的双手。 提交于 2019-12-30 05:24:07
问题 I feel like I keep going in circles with this one. I followed the Getting Started guide for Google App Engine (https://developers.google.com/appengine/docs/java/gettingstarted/) in Eclipse and everything went relatively well until I uploaded it to the App Engine. I was getting 500 errors so I checked the logs and found this: "guestbook/SignGuestbookServlet : Unsupported major.minor version 51.0]" I then search for this problem (on stackoverflow, of course) and found this solution: Google App

Unresolved inclusion: <iostream> in eclipse on mac

那年仲夏 提交于 2019-12-29 01:39:10
问题 Eclipse will not allow me to include <iostream> . I'm on a mac and when I try the same thing using xcode it works. I'm running eclipse Indigo and I've tried both the MAc OS X compiler option and the cross platform one. 回答1: I resolved this by manually adding the path to iostream to my project: Right click on project -> Properties -> C/C++ General -> Paths and Sympols -> GNU C++ (under Languages column in Includes) -> Add I added the following (the ones in Bold) -- I think the second one is

cannot read a property file in java 6 in a runnable jar

℡╲_俬逩灬. 提交于 2019-12-25 07:19:11
问题 I'm working on a little big project in java. The version used is JRE6 with eclipse Indigo. the application seems to work fine, but when i want to execute the runnable jar of this api, it doesn't work. So I execute my jar with c:...\jr6\bin\java.exe -jar c:\User\Olivier\Desktop\appli.jar And then the first probleme was about two jars i have to invert to make them work. (2 xstream jars) Now, a new error appears. It seems the application can't load a file name language.properties i add it in the

Uninstall bundles and force a refresh

拜拜、爱过 提交于 2019-12-25 05:21:13
问题 I have an Eclipse plugin and want to stop, uninstall bundles from the Eclipse instance and then refresh. Stop and uninstall is no problem, but the refresh part of the code is now deprecated and I want to find an alternative. Currently I'm doing this through org.osgi.service.packageadmin . Documentation points to org.osgi.framework.wiring package. And from the JavaDoc org.osgi.framework.wiring.FrameworkWiring.refreshBundles(..) seems to be exactly what I want. But the only class that