Autocomplete SAPUI5 Eclipse - eclipse

I've installed the Tools for developing SAPUI5 applications in my eclipse and I've created the SAPUI5 Mobile Project. However, I can't use the autocomplete yet.
In the SAPUI5 Core Libriries I can see the com.sap.ui5.mobile_1.26.3.jar but in the JS file, the autocomplete doesn't work.
How can I use de sap.m in the autocomplete?
Thanks.

Either use SAP WebIDE or Jetbrains Webstorm. Using eclipe is not very productive because of the lack assistance Eclipse give to you. I am using WebStorm and very satisfied with it.
Here you can find how to configure Webstorm for use with OpenUi5/SAPUI5
http://scn.sap.com/community/developer-center/front-end/blog/2014/09/22/configuring-jetbrains-webstorm-for-ui5-development

If you are able. SAP has delivered a local trial version of SAP Web IDE that contains autocomplete and more neat features. The full version is hosted by SAP in the cloud and is subscription based but the SAP Web IDE is far superior to the eclipse plugins in my opinion.
http://scn.sap.com/docs/DOC-58926

Related

Is there any eclipse plugin available for React JS

I am planning to use React JS with Rest API But after spending long time on google cant find the best way to start. There are no eclipse plugins available for react js. Please suggest how i can start working on React with eclipse or other open source editors.
i had the same issue and ended up to use the atom editor: https://atom.io/
Atom is based on google chrome, but you will not feel using google chrome, but a full featured editor with many cool plugins available.
I know, there is a nodeeclipse project http://www.nodeclipse.org/ but i was not able to install and run it out-of-the-box and it seems that jsx syntax for ES6 was not supported.
Now i really like atom editor, it is very easy to handle. Of course some shortcuts are different compared to eclipse, but anyway, i was really quickly able to produce code.
atom seems to be pretty lightweight and does not eat so much memory like eclipse. So there is no problem developing your reactjs app in atom and have eclipse as second editor running developing your rest app.
Kind regards
davey
Genuitec has an Eclipse plugin called CodeMix that provides wizards, navigation, content assist, validation, and debugging for ReactJS in Eclipse. You can details for all the features that CodeMix provides for for React development on the Genuitec website.
Angelo Zerr's TypeScript IDE includes a JSX editor and provides some support. Search for it in the Eclipse Marketplace Client or go to https://marketplace.eclipse.org/content/typescript-ide
I use vim. Plenty support on syntax highlighting on JSX, ES6. auto formatting, unit test running, etc. There are plenty of vim configurations you can find on github so you can get a quick start. An example of mine: https://github.com/ywen/vim-config-files
There is not a proper plugin for eclipse, you can use codemix but the code completion are not proper and it is quite slower but for as if now that is the best for eclipse. Use VS code that is the best .
You can not directly install codemix plugin from marketplace, by drag n drop or by marketplace. To install codemix please follow the below steps:
In ECLIPSE or STS

How to install from salesforce eclilpse source code

i'm new to salesforce and havn't yet worked in salesforce using eclipse.The situation is such that i have a salesforce app project eclipse source code.
Can any guide me about how to install salesforce app from eclipse.
And which versio of eclipse to use and all??
Any helful links would be appreciated.I'm a complete new bee to salesforce
You can use any recent version of Eclipse with the Force.com plugin, but Salesforce provides a specialized build of eclipse at http://wiki.developerforce.com/page/Force.com_IDE_Installation . You might just want to use that if you don't have any other eclipse needs.

gwtext.jar's version generated by gwt plugin of Eclipse

Currently I am using GWT 2.3.0 sdk and installed the google web toolkit plugin for eclipse.
I created a web application project with the plugin and want to use GWT-Ext.
Then, right click on the module (com.company.project) and choose "Google Web Toolkit" and choose "Configure for using GWT-Ext".
Then, a gwtext.jar is automatically generated in the project.
My question is, how can I verify the version of the automatic generated gwtext.jar and all the license issues with it?
As I got you, you want to check the gwt version.
So follow this step.
Right click on the project->Properties->Google->Web Tool Kit.
After selecting Web ToolKit you can see the version which is in used and you can also configure the another version by clicking on the configure version.
Hope this will help you.

Netbeans support for struts 2?

I have just started learning struts 2. I have purchased the book named Struts 2 in action. But I want to use an IDE for developing Struts 2 applications. I basically use netbeans.
Please tell me how can i develop applications using netbeans. Also, it would be great if somebody can point out a few tutorials on the same.
regards
P.S. I haven't used eclipse. Is it advisable to switch to it for struts 2, (if it is better than netbeans in this case)?
If you are already using NetBeans IDE then it is a good idea to find a plugin for Struts2 in NetBeans IDE as it will provide you tools for Struts2 maintaining the comfort you are already having with NetBeans IDE.
For NetBeans IDE 6.9 and above the
plugin for Struts2 is available in
the NetBeans Plugin Portal. Please
visit the link
http://plugins.netbeans.org/PluginPortal/faces/PluginDetailPage.jsp?pluginid=23467
and download the plugin. This plugin will get downloaded as a ZIP file. After unzipping it you will find three NBM files.
Using the Tools Menu > Plugin option open the Plugins dialog box and using the Downloaded plugin. Select those NBM files and install all of them.
Now when you start a new Java Web > Web Application project, you will get option to choose web framework with Struts2 as one option, choose Struts2
with regards
Tushar Joshi, Nagpur
I don't use Netbeans, but this IDE seems to handle natively only Struts 1.x, but you can use plugins for the Struts 2.x framework.
Regarding the tutorials, Google can help you to find some of them, like this one. The NetBeans wiki seems also helpful..

How can my Eclipse RCP code list all installed features?

I am writing a plugin for Bioclipse, an Eclipse RCP application, and need some Java source code to list all installed features in a running Bioclipse instance. How can I programmatically list all installed features?
You can try looking at IBundleGroup, IBundleGroupProvider and Platform.getBundleGroupProviders. I believe this API is the source of the information you see in the about dialog.