eclipse cdt - how do I get all the data on a CDTCommonProjectWizard -


i developing project inherits cdtcommonprojectwizard, question how data when select finish button, need project name, project type , toolchain.

check out continuecreation()

public class mynewwizard extends org.eclipse.cdt.ui.wizards.cdtprojectwizard {     @override protected iproject continuecreation(iproject prj) {     // run @ end of creation process      // things asked for:     // prj.getname()      // prj.gettype()      // toolchainmanagedbuildmanager.getbuildinfo(prj).getmanagedproject().getconfigurations()[0].gettoolchain()       return super.continuecreation(prj); } 

Comments