I'm using the WSDL editor plugin in Eclipse.
Is there any way to edit personalized translating rules (by graphic editor to code)?
Related
Does any body know if the Rad Studio Live Template engine can be used in an application?
I have a Ray trace application that would benefit from Live Templates as far as adding objects and materials to the text file for image generation.
Adding custom Live Templates would definitely be an advantage.
I thought the ToolsAPI would be a place to start but I have limited knowledge of it.
We have our own language developed over Xtext. This project is Xtext Project and Eclipse Plug-in.
For this language, we have our own custom Content Assist, error navigation. All these components are configured in UI module of the plugin project.
Can you please help me to understand how these components can be used in Language Server protocol?
Can configuration in any way(mwe2 or any other way) so that it will use my custom content assist and error navigation in Language server instead of Xtext provided?
They are not used at all. All the is used by the language service resides in the mydsl (runtime) and mydsl.ide (eclipse independent ui part) projects.
Thus you have to implement content assist again in the ide project extending https://github.com/eclipse/xtext-core/blob/master/org.eclipse.xtext.ide/src/org/eclipse/xtext/ide/editor/contentassist/IdeContentProposalProvider.xtend
There are plans to unify both extension points https://github.com/eclipse/xtext-eclipse/issues/139
I am quite new to Swagger tool. Does any one know how to use Swagger Editor tool in Intellij Idea and not the online editor format?
You can use intellij-swagger by zalando to easily edit Swagger specification files inside IntelliJ IDEA.
Is there any UI-designer aid (Like Scene Builder is a useful screen designing aid for JavaFX application / Flash Builder plugin of eclipse is a useful screen designing aid for Flex application) to make screen design easy in JSF / Primefaces.
As far as I remember you have few options to do this (mostly depending on which IDE you prefer). First is Oracle JDeveloper which is only one with built-in support for this, second is NetBeans Visual Web plugin and finally there is also Web Page Editor for Eclipse IDE.
For using **ADF** - JDeveloper covers almost everything
For using **woodstocks,ICEFaces** - Netbeans have the plugins for visual page design
For using **PrimeFaces**, Netbeans is having CRUD code generators, but not the drag and drop UI component plugins.
Ideally, as the UI code is much of a XML format it should not be a big issue do design drag and drop plugins. Still I don't know why we are not having powerful plugins for the primefaces.
This concerns the state of Struts2 framework tooling, although currently I use no IDE plug-in, preferring to create projects with maven from scratch. At one time I did use the Netbeans Struts2 plugin but stopped when support lapsed for a time between IDE releases.
It is important to know the state of current tooling and so ask:
What features are offered by the Struts2 IDE framework plugin for your IDE(s)?
Are there any design issues with the plugin? (flaws such as wanting to include old or outdated libraries)
This answer applies to the the Netbeans plugin found here: http://plugins.netbeans.org/plugin/39218 (at time of writing the last updated was : 2011-12-17)
Features
When Starting a new project. File > New Project > Web Application
You now have the option of adding struts2 support, which can product a struts2 demo project.
Not tested, but should assist in validation.xml files.
Issues and Limitations
There is no support to create sources in a Maven Web application.
If you use annotations for validation the plug-in does not help.
There is no more support in struts.xml than provided by the IDE naturally. I would have really liked to see property suggestions at the very least, and it would have been very nice to see a list of name values when in a struts.xml constant tag. The IDE does do auto completion in applicationContext.xml where it expects a class, this would be really helpful in struts.xml for the class attribute of the action tag (among other places).
There is an annoying issue of the plug-in creating struts.xml files with a special icon but when creating new xml documents this icon does not apply (should be applied on the basis of the dtd) so you need to copy and paste the file to get the icon and then change the contents.
It only provides struts2 version 2.0.14 or 2.2.3
Over all I do not recommend this plug-in over a standard Maven Project and manually adding the dependencies.