need help getting started on simple Eclipse wizard / plugin - swing

I have written some Java classes that do something useful. I'd like to wrap the functionality in a simple Eclipse plugin. Basically you'd right-click on an object, click the "launch my wizard" option and the wizard would have 3 or 4 pages of options ... next, next, next, finish. And the useful stuff happens.
Can someone tell me where to start in building such an Eclipse plugin? Also, I have Swing experience, can I build the UI in Swing or does it have to be SWT?
Any help is greatly appreciated. Thanks!
Rob

Read Eclipse Corner Tutorial on creating new wizard.
If you want to implement some kind of import/export wizard, take a look at Developing Export Wizard for Eclipse
Cheers,
Max

Related

How do I convert adobe xd to html css (vue)?

I want to make a single page application using vue.js. I get a reference like this https://coreui.io/vue/ to make it. my colleague has made a prototype using adobe xd. and my job is to convert it to html css and it will make it functional and connect to api. Can I convert it automatically? or do I have to convert it manually. if it's not possible to convert it automatically, is there a template that can help me to convert to html css? i am weak in css. so i need a reference. so I can convert quickly
please help me several options. thanks
I think you would have to convert manually
However, the export to HTML/CSS/JS feature has been asked before by the community many times and the Adobe team is currently working on it (check this and this).
Also I think you can also use a plugin called "Web Export."
In order to use the plugin,
Make sure you have the latest version of XD
Go to Plugins
Discover Plugins
Search "Web Export"
Click "Install"
The most straight forward option is to write the html/css by hand and then manually integrate it with vue components.
But since you said you are not that proficient at css, you can use Desech Studio to import the AdobeXD file, then make some adjustments, install the vue plugin in Desech Studio and then it will integrate your html/css code with vue directly.
Check the github repo at https://github.com/desech/studio-vue to see tips and the limitations of the plugin.

How to use HTML5 in Netbeans?

I'm developing a program, and wanted to use html/css/jsp in Netbeans for GUI because I used this program for my another JAVA project. It was very helpful for me to do GUI like JFrame, JButton etc..
Can I not use Netbeans like I did? There's no design part when I made a web application.
If you are looking for drag and drop like java then netbeans not provide facility for web designing. There is no design part you have to code yourself for even a single buttotn.
A simple tut for netbeans
The another resource you may need is
visualwebdev
Also html5 fun pack may come handy.

How to run .aspx file for a beginner

All,
I have very limited knowledge of .aspx and ultimately what I want to do is exactly this:
http://www.webonweboff.com/widgets/ajax/ajax_linked_selection.aspx
I appreciate the code is given in the link above, but I am only familiar with HTML and Javascript so when it starts to tell me .aspx and .cs code I get a little lost. Have done my homework and I guess i need to install something to run these programs. Naively, I only have notepad++ at the moment.
Any help would be greatly appreciated
Joe
Your best bet is to go to http://www.asp.net/downloads and click the big green Install Now button. This will use the Microsoft Web Installer to download everything you need to get started with ASP.NET development (including Visual Studio Express which will take the place of notepad++!).
Try installing visual web developer and create ASP.NET wesite in C#. You should be able to run these files.
http://www.microsoft.com/express/Web/
Also try going through these tutorials
http://www.asp.net/web-forms
ASPX is like CGI programming. Yes you need to install the ASP.NET developer studio in order to deploy your web application. It will then configure a default webserver on your local host where you can start playing with the code samples.

How to Build a Swing GUI Builder kind of Application

I want to develop an application like Swing GUI Builder where drag and drop of contents over the workspace will be possible.
How to achieve this? Is there any reference available.
This would be a huge task. Project Matisse did a lot of work on this which is now incorporated into the Netbeans IDE. This link is an interview with the person behind the matisse project, and talks about some of the challenges and how the team overcame them. You can use the layout manager they created, and looking through the Netbeans source code would probably give you some idea of how to go about building what you want.
Download NetBeans from NetBeans.org, make sure you have the JDK (Java Development Kit), and use the GUI Builder in NetBeans. It's drag and drop and is easy to use. Documentation can be found at the homepage, and you should take a quick look at this tutorial.

Primefaces wizard showing progress

I want to use Primefaces to display a wizard pretty much similar to the one shown in the showcase, but with some kind of tabview that displays the progress of the user, thus combining the wizard with the tabView.
Because I think this is quite a common requirement I was wondering if anyone tried the same and could give me some suggestions on how to do it?
Checkout primefaces latest release 2.2 that has a new feature of wizard progress step by step