Back to project page Dumbledroid.
The source code is released under:
Copyright (c) 2013, Leocadio Tin? All rights reserved. Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: ...
If you think the Android project Dumbledroid listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
package io.leocad.dumbledroidplugin.wizards; /*from w w w. ja v a 2s . c om*/ import org.eclipse.jface.viewers.IStructuredSelection; import org.eclipse.ui.dialogs.WizardNewFileCreationPage; public class FileCreationPage extends WizardNewFileCreationPage { public static final String PAGE_NAME = "FileCreationPage"; public FileCreationPage(IStructuredSelection selection) { super(PAGE_NAME, selection); setTitle("Dumbledroid Model Creator"); setDescription("This wizard creates a new Java class from a JSON/XML to use with the Dumbledroid framework."); setFileExtension("java"); } }