/* * JBoss, Home of Professional Open Source. * * See the LEGAL.txt file distributed with this work for information regarding copyright ownership and licensing. * * See the AUTHORS.txt file distributed with this work for a full listing of individual contributors. */ package org.teiid.designer.datatools.profiles.jdg; import java.util.Properties; import org.eclipse.datatools.connectivity.ui.wizards.NewConnectionProfileWizard; import org.teiid.designer.datatools.ui.DatatoolsUiConstants; public class JDGConnectionProfileWizard extends NewConnectionProfileWizard implements DatatoolsUiConstants { Properties profileProperties = new Properties(); /** * {@inheritDoc} * * @see org.eclipse.datatools.connectivity.ui.wizards.NewConnectionProfileWizard#addCustomPages() */ @Override public void addCustomPages() { JDGProfileDetailsWizardPage page1 = new JDGProfileDetailsWizardPage(UTIL.getString("JDGProfileDetailsWizardPage.Name")); //$NON-NLS-1$ page1.setPageComplete(false); addPage(page1); } /** * {@inheritDoc} * * @see org.eclipse.datatools.connectivity.ui.wizards.NewConnectionProfileWizard#getProfileProperties() */ @Override public Properties getProfileProperties() { return profileProperties; } }