Author: dgeraskov
Date: 2008-08-27 08:20:12 -0400 (Wed, 27 Aug 2008)
New Revision: 9917
Added:
trunk/hibernatetools/plugins/org.jboss.tools.hibernate.jpt.ui/src/org/jboss/tools/hibernate/jpt/ui/ConsoleConfigurationFacetInstallDelegate.java
trunk/hibernatetools/plugins/org.jboss.tools.hibernate.jpt.ui/src/org/jboss/tools/hibernate/jpt/ui/ConsoleConfigurationFacetModel.java
trunk/hibernatetools/plugins/org.jboss.tools.hibernate.jpt.ui/src/org/jboss/tools/hibernate/jpt/ui/wizard/Messages.java
trunk/hibernatetools/plugins/org.jboss.tools.hibernate.jpt.ui/src/org/jboss/tools/hibernate/jpt/ui/wizard/ProjectCreateFacetWizardPage.java
trunk/hibernatetools/plugins/org.jboss.tools.hibernate.jpt.ui/src/org/jboss/tools/hibernate/jpt/ui/wizard/messages.properties
Modified:
trunk/hibernatetools/plugins/org.jboss.tools.hibernate.jpt.ui/plugin.xml
Log:
https://jira.jboss.org/jira/browse/JBIDE-2679
Modified: trunk/hibernatetools/plugins/org.jboss.tools.hibernate.jpt.ui/plugin.xml
===================================================================
--- trunk/hibernatetools/plugins/org.jboss.tools.hibernate.jpt.ui/plugin.xml 2008-08-27
08:42:27 UTC (rev 9916)
+++ trunk/hibernatetools/plugins/org.jboss.tools.hibernate.jpt.ui/plugin.xml 2008-08-27
12:20:12 UTC (rev 9917)
@@ -10,5 +10,53 @@
</jpaPlatform>
</extension>
+ <extension
+ point="org.eclipse.wst.common.project.facet.ui.wizardPages">
+ <wizard-pages
+ action="hibernate.consoleConfiguration.core.install">
+ <page
+
class="org.jboss.tools.hibernate.jpt.ui.wizard.ProjectCreateFacetWizardPage">
+ </page>
+ </wizard-pages>
+ </extension>
+ <extension
+ point="org.eclipse.wst.common.project.facet.core.facets">
+ <project-facet
+ id="hibernate.consoleConfiguration.core">
+ <label>
+ Console Configuration
+ </label>
+ <description>
+ Enables generation of Console Configuration based on selected Connection
Profile.
+ </description>
+ </project-facet>
+ <project-facet-version
+ facet="hibernate.consoleConfiguration.core"
+ version="1.0">
+ <constraint>
+ <requires
+ facet="jpt.jpa"
+ soft="false">
+ </requires>
+ </constraint>
+
+ </project-facet-version>
+
+ <action
+ facet="hibernate.consoleConfiguration.core"
+ id="hibernate.consoleConfiguration.core.install"
+ type="install">
+ <delegate
+
class="org.jboss.tools.hibernate.jpt.ui.ConsoleConfigurationFacetInstallDelegate"/>
+ <config-factory
+
class="org.jboss.tools.hibernate.jpt.ui.ConsoleConfigurationFacetModel$Factory"/>
+ </action>
+
+ </extension>
+
+
+
+
+
</plugin>
Added:
trunk/hibernatetools/plugins/org.jboss.tools.hibernate.jpt.ui/src/org/jboss/tools/hibernate/jpt/ui/ConsoleConfigurationFacetInstallDelegate.java
===================================================================
---
trunk/hibernatetools/plugins/org.jboss.tools.hibernate.jpt.ui/src/org/jboss/tools/hibernate/jpt/ui/ConsoleConfigurationFacetInstallDelegate.java
(rev 0)
+++
trunk/hibernatetools/plugins/org.jboss.tools.hibernate.jpt.ui/src/org/jboss/tools/hibernate/jpt/ui/ConsoleConfigurationFacetInstallDelegate.java 2008-08-27
12:20:12 UTC (rev 9917)
@@ -0,0 +1,89 @@
+/*******************************************************************************
+ * Copyright (c) 2007-2008 Red Hat, Inc.
+ * Distributed under license by Red Hat, Inc. All rights reserved.
+ * This program is made available under the terms of the
+ * Eclipse Public License v1.0 which accompanies this distribution,
+ * and is available at
http://www.eclipse.org/legal/epl-v10.html
+ *
+ * Contributor:
+ * Red Hat, Inc. - initial API and implementation
+ ******************************************************************************/
+
+package org.jboss.tools.hibernate.jpt.ui;
+
+import java.util.List;
+import java.util.Properties;
+
+import org.eclipse.core.resources.IProject;
+import org.eclipse.core.runtime.CoreException;
+import org.eclipse.core.runtime.IProgressMonitor;
+import org.eclipse.datatools.connectivity.IConnectionProfile;
+import org.eclipse.datatools.connectivity.ProfileManager;
+import org.eclipse.debug.core.DebugPlugin;
+import org.eclipse.debug.core.ILaunchConfigurationType;
+import org.eclipse.debug.core.ILaunchConfigurationWorkingCopy;
+import org.eclipse.debug.core.ILaunchManager;
+import org.eclipse.jdt.launching.IJavaLaunchConfigurationConstants;
+import org.eclipse.wst.common.project.facet.core.IDelegate;
+import org.eclipse.wst.common.project.facet.core.IProjectFacetVersion;
+import org.hibernate.cfg.Environment;
+import
org.hibernate.console.preferences.ConsoleConfigurationPreferences.ConfigurationMode;
+import org.hibernate.eclipse.launch.ICodeGenerationLaunchConstants;
+import org.hibernate.eclipse.launch.IConsoleConfigurationLaunchConstants;
+
+public class ConsoleConfigurationFacetInstallDelegate implements IDelegate {
+
+ public void execute(IProject project, IProjectFacetVersion fv, Object config,
IProgressMonitor monitor)
+ throws CoreException {
+ ConsoleConfigurationFacetModel model = (ConsoleConfigurationFacetModel) config;
+ if (model.getConsoleConfigurationName() == null ||
"".equals(model.getConsoleConfigurationName())) return;
+ //create cc
+
+ ILaunchManager lm = DebugPlugin.getDefault().getLaunchManager();
+ ILaunchConfigurationType lct =
lm.getLaunchConfigurationType(ICodeGenerationLaunchConstants.CONSOLE_CONFIGURATION_LAUNCH_TYPE_ID);
+ ILaunchConfigurationWorkingCopy wc = lct.newInstance(null,
model.getConsoleConfigurationName());
+
+ //TODO: change to work with connection profile when JBIDE-719 is finished.
+
+ wc.setAttribute(IConsoleConfigurationLaunchConstants.CONFIGURATION_FACTORY,
ConfigurationMode.JPA.toString());
+ wc.setAttribute(IJavaLaunchConfigurationConstants.ATTR_PROJECT_NAME,
model.getProjectName());
+ wc.setAttribute(IJavaLaunchConfigurationConstants.ATTR_DEFAULT_CLASSPATH, true );
+ wc.setAttribute(IConsoleConfigurationLaunchConstants.FILE_MAPPINGS,
(List<String>)null);
+
+ IConnectionProfile profile =
ProfileManager.getInstance().getProfileByName(model.getConnectionProfileName());
+ if (null != profile) {
+ Properties cpProperties = profile.getProperties(profile.getProviderId());
+ String driver =
cpProperties.getProperty("org.eclipse.datatools.connectivity.db.driverClass");
+ wc.setAttribute(Environment.DRIVER, driver);
+ String url =
cpProperties.getProperty("org.eclipse.datatools.connectivity.db.URL");
+ wc.setAttribute(Environment.URL, url);
+ String user =
cpProperties.getProperty("org.eclipse.datatools.connectivity.db.username");
+ if (null != user && user.length() > 0) {
+ wc.setAttribute(Environment.USER, user);
+ }
+ String pass =
cpProperties.getProperty("org.eclipse.datatools.connectivity.db.password");
+ if (null != pass && pass.length() > 0) {
+ wc.setAttribute(Environment.PASS, pass);
+ }
+
+ /* Hibernate dialect must explicitly be set(error)
+ need to register driver before
+ Properties props = new Properties();
+ props.putAll(wc.getAttributes());
+ try {
+ DatabaseMetaData meta = DriverManager.getConnection(url, user, pass).getMetaData();
+ String databaseName = meta.getDatabaseProductName();
+ int databaseMajorVersion = meta.getDatabaseMajorVersion();
+ //SQL Dialect:
+ Dialect dialect = DialectFactory.buildDialect(props, databaseName,
databaseMajorVersion );
+ wc.setAttribute(Environment.DIALECT, dialect.toString());
+ } catch (Exception e) {
+ //can't determine dialect
+ }
+ */
+ }
+
+ wc.doSave();
+ }
+
+}
Property changes on:
trunk/hibernatetools/plugins/org.jboss.tools.hibernate.jpt.ui/src/org/jboss/tools/hibernate/jpt/ui/ConsoleConfigurationFacetInstallDelegate.java
___________________________________________________________________
Name: svn:mime-type
+ text/plain
Name: svn:keywords
+ Author Id Revision Date
Name: svn:eol-style
+ native
Added:
trunk/hibernatetools/plugins/org.jboss.tools.hibernate.jpt.ui/src/org/jboss/tools/hibernate/jpt/ui/ConsoleConfigurationFacetModel.java
===================================================================
---
trunk/hibernatetools/plugins/org.jboss.tools.hibernate.jpt.ui/src/org/jboss/tools/hibernate/jpt/ui/ConsoleConfigurationFacetModel.java
(rev 0)
+++
trunk/hibernatetools/plugins/org.jboss.tools.hibernate.jpt.ui/src/org/jboss/tools/hibernate/jpt/ui/ConsoleConfigurationFacetModel.java 2008-08-27
12:20:12 UTC (rev 9917)
@@ -0,0 +1,78 @@
+/*******************************************************************************
+ * Copyright (c) 2007-2008 Red Hat, Inc.
+ * Distributed under license by Red Hat, Inc. All rights reserved.
+ * This program is made available under the terms of the
+ * Eclipse Public License v1.0 which accompanies this distribution,
+ * and is available at
http://www.eclipse.org/legal/epl-v10.html
+ *
+ * Contributor:
+ * Red Hat, Inc. - initial API and implementation
+ ******************************************************************************/
+package org.jboss.tools.hibernate.jpt.ui;
+
+import org.eclipse.core.runtime.CoreException;
+import org.eclipse.wst.common.project.facet.core.IActionConfigFactory;
+
+/**
+ * @author Dmitry Geraskov
+ *
+ */
+public class ConsoleConfigurationFacetModel {
+
+ private String projectName;
+
+ private String consoleConfigurationName;
+
+ private String connectionProfileName;
+
+ public static class Factory implements IActionConfigFactory {
+ public Object create() throws CoreException {
+ return new ConsoleConfigurationFacetModel();
+ }
+ }
+
+ /**
+ * @return the projectName
+ */
+ public String getProjectName() {
+ return projectName;
+ }
+
+ /**
+ * @param projectName the projectName to set
+ */
+ public void setProjectName(String projectName) {
+ if (projectName != null) projectName = projectName.trim();
+ this.projectName = projectName;
+ }
+
+ /**
+ * @return the consoleConfigurationName
+ */
+ public String getConsoleConfigurationName() {
+ return consoleConfigurationName;
+ }
+
+ /**
+ * @param consoleConfigurationName the consoleConfigurationName to set
+ */
+ public void setConsoleConfigurationName(String ccName) {
+ this.consoleConfigurationName = ccName;
+ }
+
+ /**
+ * @return the connectionProfileName
+ */
+ public String getConnectionProfileName() {
+ return connectionProfileName;
+ }
+
+ /**
+ * @param connectionProfileName the connectionProfileName to set
+ */
+ public void setConnectionProfileName(String cpName) {
+ this.connectionProfileName = cpName;
+ }
+
+
+}
Property changes on:
trunk/hibernatetools/plugins/org.jboss.tools.hibernate.jpt.ui/src/org/jboss/tools/hibernate/jpt/ui/ConsoleConfigurationFacetModel.java
___________________________________________________________________
Name: svn:mime-type
+ text/plain
Name: svn:keywords
+ Author Id Revision Date
Name: svn:eol-style
+ native
Added:
trunk/hibernatetools/plugins/org.jboss.tools.hibernate.jpt.ui/src/org/jboss/tools/hibernate/jpt/ui/wizard/Messages.java
===================================================================
---
trunk/hibernatetools/plugins/org.jboss.tools.hibernate.jpt.ui/src/org/jboss/tools/hibernate/jpt/ui/wizard/Messages.java
(rev 0)
+++
trunk/hibernatetools/plugins/org.jboss.tools.hibernate.jpt.ui/src/org/jboss/tools/hibernate/jpt/ui/wizard/Messages.java 2008-08-27
12:20:12 UTC (rev 9917)
@@ -0,0 +1,34 @@
+/*******************************************************************************
+ * Copyright (c) 2007-2008 Red Hat, Inc.
+ * Distributed under license by Red Hat, Inc. All rights reserved.
+ * This program is made available under the terms of the
+ * Eclipse Public License v1.0 which accompanies this distribution,
+ * and is available at
http://www.eclipse.org/legal/epl-v10.html
+ *
+ * Contributor:
+ * Red Hat, Inc. - initial API and implementation
+ ******************************************************************************/
+package org.jboss.tools.hibernate.jpt.ui.wizard;
+
+import org.eclipse.osgi.util.NLS;
+
+/**
+ * @author Dmitry Geraskov
+ *
+ */
+public class Messages extends NLS {
+ private static final String BUNDLE_NAME =
"org.jboss.tools.hibernate.jpt.ui.wizard.messages"; //$NON-NLS-1$
+
+ public static String ccName;
+ public static String connectionProfileError;
+ public static String selectName;
+ public static String wizardMessage;
+
+ static {
+ // initialize resource bundle
+ NLS.initializeMessages(BUNDLE_NAME, Messages.class);
+ }
+
+ private Messages() {
+ }
+}
Property changes on:
trunk/hibernatetools/plugins/org.jboss.tools.hibernate.jpt.ui/src/org/jboss/tools/hibernate/jpt/ui/wizard/Messages.java
___________________________________________________________________
Name: svn:mime-type
+ text/plain
Name: svn:keywords
+ Author Id Revision Date
Name: svn:eol-style
+ native
Added:
trunk/hibernatetools/plugins/org.jboss.tools.hibernate.jpt.ui/src/org/jboss/tools/hibernate/jpt/ui/wizard/ProjectCreateFacetWizardPage.java
===================================================================
---
trunk/hibernatetools/plugins/org.jboss.tools.hibernate.jpt.ui/src/org/jboss/tools/hibernate/jpt/ui/wizard/ProjectCreateFacetWizardPage.java
(rev 0)
+++
trunk/hibernatetools/plugins/org.jboss.tools.hibernate.jpt.ui/src/org/jboss/tools/hibernate/jpt/ui/wizard/ProjectCreateFacetWizardPage.java 2008-08-27
12:20:12 UTC (rev 9917)
@@ -0,0 +1,228 @@
+/*******************************************************************************
+ * Copyright (c) 2007-2008 Red Hat, Inc.
+ * Distributed under license by Red Hat, Inc. All rights reserved.
+ * This program is made available under the terms of the
+ * Eclipse Public License v1.0 which accompanies this distribution,
+ * and is available at
http://www.eclipse.org/legal/epl-v10.html
+ *
+ * Contributor:
+ * Red Hat, Inc. - initial API and implementation
+ ******************************************************************************/
+
+package org.jboss.tools.hibernate.jpt.ui.wizard;
+
+import org.eclipse.core.runtime.CoreException;
+import org.eclipse.core.runtime.Platform;
+import org.eclipse.debug.core.DebugPlugin;
+import org.eclipse.debug.core.ILaunchManager;
+import org.eclipse.jdt.internal.ui.wizards.dialogfields.DialogField;
+import org.eclipse.jdt.internal.ui.wizards.dialogfields.IDialogFieldListener;
+import org.eclipse.jdt.internal.ui.wizards.dialogfields.SelectionButtonDialogField;
+import org.eclipse.jdt.internal.ui.wizards.dialogfields.StringDialogField;
+import org.eclipse.jface.dialogs.Dialog;
+import org.eclipse.jpt.core.internal.facet.JpaFacetDataModelProperties;
+import org.eclipse.osgi.util.NLS;
+import org.eclipse.swt.SWT;
+import org.eclipse.swt.layout.GridData;
+import org.eclipse.swt.layout.GridLayout;
+import org.eclipse.swt.widgets.Composite;
+import org.eclipse.swt.widgets.Control;
+import org.eclipse.wst.common.frameworks.datamodel.IDataModel;
+import org.eclipse.wst.common.project.facet.core.IProjectFacet;
+import org.eclipse.wst.common.project.facet.core.IProjectFacetVersion;
+import org.eclipse.wst.common.project.facet.core.ProjectFacetsManager;
+import org.eclipse.wst.common.project.facet.core.VersionFormatException;
+import org.eclipse.wst.common.project.facet.core.IFacetedProject.Action;
+import org.eclipse.wst.common.project.facet.ui.AbstractFacetWizardPage;
+import org.hibernate.eclipse.console.HibernateConsoleMessages;
+import org.jboss.tools.hibernate.jpt.ui.ConsoleConfigurationFacetModel;
+import org.jboss.tools.hibernate.jpt.ui.HibernateJptUIPlugin;
+
+public class ProjectCreateFacetWizardPage extends AbstractFacetWizardPage {
+
+ private String connectioProfileName;
+
+ private String projectName;
+
+ private boolean firstTime = true;
+
+ private ConsoleConfigurationFacetModel config;
+
+ private StringDialogField ccName;
+
+ private SelectionButtonDialogField select;
+
+ private IDialogFieldListener completeListener = new IDialogFieldListener() {
+ public void dialogFieldChanged(DialogField field) {
+ updateFields();
+ updateButtons();
+ }
+
+ };
+
+ public ProjectCreateFacetWizardPage() {
+ super(new String());
+ setMessage(Messages.wizardMessage); //$NON-NLS-1$
+ }
+
+ /**
+ * @param pageName
+ */
+ public ProjectCreateFacetWizardPage(String pageName) {
+ super(pageName);
+ }
+
+ /*
+ * (non-Javadoc)
+ *
+ * @see
+ * org.eclipse.wst.common.frameworks.internal.datamodel.ui.DataModelWizardPage
+ * #createTopLevelComposite(org.eclipse.swt.widgets.Composite)
+ */
+ public void createControl(Composite parent) {
+ int nColumns = 2;
+ Composite composite = new Composite(parent, SWT.NULL);
+ GridLayout layout = new GridLayout(nColumns, false);
+ composite.setLayout(layout);
+
+ select = new SelectionButtonDialogField(SWT.CHECK);
+ select.setLabelText(Messages.selectName);
+ select.setSelection(true);
+
+ ccName = new StringDialogField();
+ ccName.setLabelText(Messages.ccName);
+
+ select.attachDialogField(ccName);
+ select.setDialogFieldListener(completeListener);
+ ccName.setDialogFieldListener(completeListener);
+
+ Control[] controls = select.doFillIntoGrid(composite, nColumns);
+ ((GridData) controls[0].getLayoutData()).grabExcessHorizontalSpace = true;
+ ccName.doFillIntoGrid(composite, nColumns);
+
+ Dialog.applyDialogFont(parent);
+ setControl(composite);
+ }
+
+ public void setConfig(Object config) {
+ this.config = (ConsoleConfigurationFacetModel) config;
+ }
+
+ @Override
+ public void transferStateToConfig() {
+ if (select.isSelected()) {
+ config.setProjectName(projectName);
+ config.setConsoleConfigurationName(ccName.getText());
+ config.setConnectionProfileName(connectioProfileName);
+ }
+ }
+
+ /*
+ * (non-Javadoc)
+ *
+ * @see org.eclipse.jface.dialogs.DialogPage#setVisible(boolean)
+ */
+ @Override
+ public void setVisible(boolean visible) {
+ super.setVisible(visible);
+
+ if (visible) {
+ updateFields();
+ updateButtons();
+ }
+ }
+
+ /*
+ * (non-Javadoc)
+ *
+ * @see org.eclipse.jface.wizard.WizardPage#isPageComplete()
+ */
+ @Override
+ public boolean isPageComplete() {
+ updateFields();
+ if (!select.isSelected()) {
+ return true;
+ } else {
+ return connectioProfileName != null && ccName.getText().length() > 0;
+ }
+ }
+
+ private void updateButtons() {
+ if (!select.isSelected()) {
+ setErrorMessage(null);
+ } else {
+ if (connectioProfileName == null) {
+ setErrorMessage(Messages.connectionProfileError);
+ } else {
+ setErrorMessage(verifyName());
+ }
+ }
+ setPageComplete(getErrorMessage() == null);
+ }
+
+ private void updateFields() {
+ connectioProfileName = null;
+ projectName = context.getProjectName();
+
+ if (firstTime && projectName != null) {
+ firstTime = false;
+ ILaunchManager lm = DebugPlugin.getDefault().getLaunchManager();
+ ccName.setText(lm.generateUniqueLaunchConfigurationNameFrom(projectName));
+ }
+
+ IProjectFacet pf = ProjectFacetsManager.getProjectFacet("jpt.jpa");
//$NON-NLS-1$
+ IProjectFacetVersion fv;
+ try {
+ fv = pf.getLatestVersion();
+ Action a = context.getAction(Action.Type.INSTALL, fv);
+ if (a != null) {
+ IDataModel model = (IDataModel) a.getConfig();
+ connectioProfileName = (String)
model.getProperty(JpaFacetDataModelProperties.CONNECTION);
+ }
+ } catch (VersionFormatException e) {
+ HibernateJptUIPlugin.logException(e);
+ } catch (CoreException e) {
+ HibernateJptUIPlugin.logException(e);
+ }
+ }
+
+ private String verifyName() {
+ String currentName = ccName.getText().trim();
+
+ if (currentName.length() < 1) {
+ return HibernateConsoleMessages.ConsoleConfigurationWizardPage_name_must_specified;
+ }
+
+ ILaunchManager lm = DebugPlugin.getDefault().getLaunchManager();
+ try {
+ if (lm.isExistingLaunchConfigurationName(currentName)) {
+ return
HibernateConsoleMessages.ConsoleConfigurationWizardPage_config_name_already_exist;
+ }
+ } catch (CoreException e) {
+ HibernateJptUIPlugin.logException(e);
+ }
+
+ if (Platform.OS_WIN32.equals(Platform.getOS())) {
+ String[] badnames = new String[] { "aux", "clock$",
"com1", "com2", "com3", "com4", //$NON-NLS-1$
//$NON-NLS-2$ //$NON-NLS-3$ //$NON-NLS-4$ //$NON-NLS-5$ //$NON-NLS-6$
+ "com5", "com6", "com7", "com8",
"com9", "con", "lpt1", "lpt2", //$NON-NLS-1$
//$NON-NLS-2$ //$NON-NLS-3$ //$NON-NLS-4$ //$NON-NLS-5$ //$NON-NLS-6$ //$NON-NLS-7$
//$NON-NLS-8$
+ "lpt3", "lpt4", "lpt5", "lpt6",
"lpt7", "lpt8", "lpt9", "nul", "prn" };
//$NON-NLS-1$ //$NON-NLS-2$ //$NON-NLS-3$ //$NON-NLS-4$ //$NON-NLS-5$ //$NON-NLS-6$
//$NON-NLS-7$ //$NON-NLS-8$ //$NON-NLS-9$
+ for (int i = 0; i < badnames.length; i++) {
+ if (currentName.equals(badnames[i])) {
+ return NLS.bind(HibernateConsoleMessages.ConsoleConfigurationWizardPage_bad_name,
currentName);
+ }
+ }
+ }
+ // See if name contains any characters that we deem illegal.
+ // '@' and '&' are disallowed because they corrupt menu items.
+ char[] disallowedChars = new char[] { '@', '&', '\\',
'/', ':', '*', '?', '"', '<',
'>', '|', '\0' };
+ for (int i = 0; i < disallowedChars.length; i++) {
+ char c = disallowedChars[i];
+ if (currentName.indexOf(c) > -1) {
+ return NLS.bind(HibernateConsoleMessages.ConsoleConfigurationWizardPage_bad_char,
c);
+ }
+ }
+
+ return null;
+ }
+
+}
Property changes on:
trunk/hibernatetools/plugins/org.jboss.tools.hibernate.jpt.ui/src/org/jboss/tools/hibernate/jpt/ui/wizard/ProjectCreateFacetWizardPage.java
___________________________________________________________________
Name: svn:mime-type
+ text/plain
Name: svn:keywords
+ Author Id Revision Date
Name: svn:eol-style
+ native
Added:
trunk/hibernatetools/plugins/org.jboss.tools.hibernate.jpt.ui/src/org/jboss/tools/hibernate/jpt/ui/wizard/messages.properties
===================================================================
---
trunk/hibernatetools/plugins/org.jboss.tools.hibernate.jpt.ui/src/org/jboss/tools/hibernate/jpt/ui/wizard/messages.properties
(rev 0)
+++
trunk/hibernatetools/plugins/org.jboss.tools.hibernate.jpt.ui/src/org/jboss/tools/hibernate/jpt/ui/wizard/messages.properties 2008-08-27
12:20:12 UTC (rev 9917)
@@ -0,0 +1,4 @@
+ccName=Console Configuration name
+connectionProfileError=Connection profile should be selected.
+selectName=Create default Console Configuration
+wizardMessage=Enter console configuration name if you want to create new one for selected
project.
Property changes on:
trunk/hibernatetools/plugins/org.jboss.tools.hibernate.jpt.ui/src/org/jboss/tools/hibernate/jpt/ui/wizard/messages.properties
___________________________________________________________________
Name: svn:mime-type
+ text/plain
Name: svn:eol-style
+ native