JBoss Tools SVN: r36458 - trunk/modeshape/plugins/org.jboss.tools.modeshape.rest/src/org/jboss/tools/modeshape/rest.
by jbosstools-commits@lists.jboss.org
Author: dgolovin
Date: 2011-11-18 18:27:01 -0500 (Fri, 18 Nov 2011)
New Revision: 36458
Modified:
trunk/modeshape/plugins/org.jboss.tools.modeshape.rest/src/org/jboss/tools/modeshape/rest/Utils.java
Log:
fixed class reference in java doc comment. made it a qualified type name to avoid weird error marker in eclipse
Modified: trunk/modeshape/plugins/org.jboss.tools.modeshape.rest/src/org/jboss/tools/modeshape/rest/Utils.java
===================================================================
--- trunk/modeshape/plugins/org.jboss.tools.modeshape.rest/src/org/jboss/tools/modeshape/rest/Utils.java 2011-11-18 19:44:18 UTC (rev 36457)
+++ trunk/modeshape/plugins/org.jboss.tools.modeshape.rest/src/org/jboss/tools/modeshape/rest/Utils.java 2011-11-18 23:27:01 UTC (rev 36458)
@@ -26,7 +26,7 @@
public final class Utils {
/**
- * Converts the non-Eclipse status severity to an Eclipse severity level. An {@link Status.Severity#UNKNOWN unknown status} is
+ * Converts the non-Eclipse status severity to an Eclipse severity level. An {@link org.modeshape.web.jcr.rest.client.Status.Severity#UNKNOWN unknown status} is
* converted to {@link IStatus#CANCEL cancel}.
*
* @param severity the eclipse status severity level
13 years, 1 month
JBoss Tools SVN: r36457 - trunk/common/plugins/org.jboss.tools.common.model/src/org/jboss/tools/common/model/impl.
by jbosstools-commits@lists.jboss.org
Author: scabanovich
Date: 2011-11-18 14:44:18 -0500 (Fri, 18 Nov 2011)
New Revision: 36457
Modified:
trunk/common/plugins/org.jboss.tools.common.model/src/org/jboss/tools/common/model/impl/RegularObjectImpl.java
Log:
JBIDE-10194
https://issues.jboss.org/browse/JBIDE-10194
Reporting internal model error is fixed.
Modified: trunk/common/plugins/org.jboss.tools.common.model/src/org/jboss/tools/common/model/impl/RegularObjectImpl.java
===================================================================
--- trunk/common/plugins/org.jboss.tools.common.model/src/org/jboss/tools/common/model/impl/RegularObjectImpl.java 2011-11-18 19:30:05 UTC (rev 36456)
+++ trunk/common/plugins/org.jboss.tools.common.model/src/org/jboss/tools/common/model/impl/RegularObjectImpl.java 2011-11-18 19:44:18 UTC (rev 36457)
@@ -12,9 +12,12 @@
import java.text.MessageFormat;
import java.util.*;
+
+import org.eclipse.swt.widgets.Display;
import org.jboss.tools.common.model.*;
import org.jboss.tools.common.meta.*;
import org.jboss.tools.common.model.event.XModelTreeEvent;
+import org.jboss.tools.common.model.plugin.ModelPlugin;
import org.jboss.tools.common.model.util.XModelObjectLoaderUtil;
public class RegularObjectImpl extends XModelObjectImpl implements XOrderedObject {
@@ -143,12 +146,25 @@
// diagnostic
+ /**
+ * This method may be called in two cases:
+ * 1) User input is not appropriately validated. In this case proper validation
+ * and notification should be implemented (e.g. error message in dialogs,
+ * error markers in editors/error view)
+ * 2) Internal model update is implemented with errors.
+ * @param o
+ * @param name
+ * @param value
+ */
protected void elementExists(XModelObject o, String name, String value) {
if(getModel().getService() == null) return;
String mes = MessageFormat.format(
"Cannot set {0} = {1} for {2}\nbecause {3} exists in the {4}",
getAttrNameByXMLName(name), value, title(this), title(o), title(getParent()));
- getModel().getService().showDialog("Error", mes, new String[]{"OK"}, null, 1);
+ if(Display.getCurrent() != null) {
+ getModel().getService().showDialog("Error", mes, new String[]{"OK"}, null, 1);
+ }
+ ModelPlugin.getDefault().logError(mes);
}
private static String title(XModelObject o) {
13 years, 1 month
JBoss Tools SVN: r36456 - trunk/seam/plugins/org.jboss.tools.seam.pages.xml/src/org/jboss/tools/seam/pages/xml/model/helpers.
by jbosstools-commits@lists.jboss.org
Author: scabanovich
Date: 2011-11-18 14:30:05 -0500 (Fri, 18 Nov 2011)
New Revision: 36456
Modified:
trunk/seam/plugins/org.jboss.tools.seam.pages.xml/src/org/jboss/tools/seam/pages/xml/model/helpers/SeamPagesDiagramHelper.java
Log:
JBIDE-10194
https://issues.jboss.org/browse/JBIDE-10194
Fixed update in Seam pages diagram model..
Modified: trunk/seam/plugins/org.jboss.tools.seam.pages.xml/src/org/jboss/tools/seam/pages/xml/model/helpers/SeamPagesDiagramHelper.java
===================================================================
--- trunk/seam/plugins/org.jboss.tools.seam.pages.xml/src/org/jboss/tools/seam/pages/xml/model/helpers/SeamPagesDiagramHelper.java 2011-11-18 19:18:37 UTC (rev 36455)
+++ trunk/seam/plugins/org.jboss.tools.seam.pages.xml/src/org/jboss/tools/seam/pages/xml/model/helpers/SeamPagesDiagramHelper.java 2011-11-18 19:30:05 UTC (rev 36456)
@@ -8,7 +8,6 @@
import java.util.Map;
import java.util.Set;
-import org.jboss.tools.common.model.XModelException;
import org.jboss.tools.common.model.XModelObject;
import org.jboss.tools.common.model.util.XModelObjectUtil;
import org.jboss.tools.jst.web.model.ReferenceObject;
@@ -26,6 +25,7 @@
private Set<String> pageViewIds = new HashSet<String>();
private Map<String,XModelObject> exceptionItems = new HashMap<String,XModelObject>();
private Map<String,XModelObject> targets = new HashMap<String,XModelObject>();
+ private Set<String> changedTargets = new HashSet<String>();
public SeamPagesDiagramHelper(XModelObject diagram) {
this.diagram = diagram;
@@ -40,6 +40,7 @@
pageViewIds.clear();
exceptionItems.clear();
targets.clear();
+ changedTargets.clear();
this.config = diagram.getParent();
}
@@ -92,6 +93,11 @@
if(og != null) {
String opp = og.getPathPart();
if(!pp.equals(opp)) {
+ XModelObject og1 = diagram.getChildByPath(pp);
+ if(og1 != null) {
+ og1.removeFromParent();
+ changedTargets.add(toNavigationRulePathPart(og1.getAttributeValue(ATTR_PATH)));
+ }
pageItems.remove(opp);
og.setAttributeValue(ATTR_NAME, pp);
}
@@ -173,6 +179,7 @@
g.setAttributeValue(ATTR_PATH, path);
g.setAttributeValue(ATTR_TYPE, type);
diagram.addChild(g);
+ changedTargets.add(pp);
}
return g;
}
@@ -432,6 +439,9 @@
// String fvi = findBestMatch(path);
XModelObject g = getPage(path);
String target = (g == null) ? "" : g.getPathPart();
+ if(target != null && target.equals(output.getAttributeValue(ATTR_TARGET)) && changedTargets.contains(target)) {
+ output.setAttributeValue(ATTR_TARGET, "");
+ }
output.setAttributeValue(ATTR_TARGET, target);
}
13 years, 1 month
JBoss Tools SVN: r36455 - trunk/central/plugins/org.jboss.tools.central/src/org/jboss/tools/central/editors.
by jbosstools-commits@lists.jboss.org
Author: snjeza
Date: 2011-11-18 14:18:37 -0500 (Fri, 18 Nov 2011)
New Revision: 36455
Modified:
trunk/central/plugins/org.jboss.tools.central/src/org/jboss/tools/central/editors/SoftwarePage.java
Log:
JBIDE-10186 Add the Install button to the bottom left corner of the Software/Update page
Modified: trunk/central/plugins/org.jboss.tools.central/src/org/jboss/tools/central/editors/SoftwarePage.java
===================================================================
--- trunk/central/plugins/org.jboss.tools.central/src/org/jboss/tools/central/editors/SoftwarePage.java 2011-11-18 18:46:37 UTC (rev 36454)
+++ trunk/central/plugins/org.jboss.tools.central/src/org/jboss/tools/central/editors/SoftwarePage.java 2011-11-18 19:18:37 UTC (rev 36455)
@@ -31,10 +31,13 @@
import org.eclipse.swt.SWT;
import org.eclipse.swt.events.ControlAdapter;
import org.eclipse.swt.events.ControlEvent;
+import org.eclipse.swt.events.SelectionEvent;
+import org.eclipse.swt.events.SelectionListener;
import org.eclipse.swt.graphics.Point;
import org.eclipse.swt.layout.GridData;
import org.eclipse.swt.layout.GridLayout;
import org.eclipse.swt.layout.RowLayout;
+import org.eclipse.swt.widgets.Button;
import org.eclipse.swt.widgets.Composite;
import org.eclipse.swt.widgets.Control;
import org.eclipse.swt.widgets.Display;
@@ -61,6 +64,8 @@
public static final String ID = ID_PREFIX + "SoftwarePage";
+ private static final String ICON_INSTALL = "/icons/repository-submit.gif";
+
private Dictionary<Object, Object> environment;
private ScrolledForm form;
private IProgressMonitor monitor;
@@ -150,14 +155,6 @@
}
gd = new GridData(SWT.FILL, SWT.FILL, true, true);
discoveryControl.setLayoutData(gd);
-
- discoveryViewer.addSelectionChangedListener(new ISelectionChangedListener() {
-
- @Override
- public void selectionChanged(SelectionChangedEvent event) {
- installAction.setEnabled(discoveryViewer.getInstallableConnectors().size() > 0);
- }
- });
loadingComposite = createLoadingComposite(toolkit, pageBook);
@@ -180,7 +177,29 @@
}
});
-
+ final Button installButton = toolkit.createButton(featureComposite, "Install", SWT.PUSH);
+ installButton.setEnabled(false);
+ installButton.setImage(JBossCentralActivator.getDefault().getImage(ICON_INSTALL));
+ installButton.addSelectionListener(new SelectionListener() {
+
+ @Override
+ public void widgetSelected(SelectionEvent e) {
+ installAction.run();
+ }
+
+ @Override
+ public void widgetDefaultSelected(SelectionEvent e) {
+
+ }
+ });
+ discoveryViewer.addSelectionChangedListener(new ISelectionChangedListener() {
+
+ @Override
+ public void selectionChanged(SelectionChangedEvent event) {
+ installAction.setEnabled(discoveryViewer.getInstallableConnectors().size() > 0);
+ installButton.setEnabled(discoveryViewer.getInstallableConnectors().size() > 0);
+ }
+ });
features.setClient(featureComposite);
showLoading();
pageBook.pack(true);
@@ -336,7 +355,7 @@
private class InstallAction extends Action {
public InstallAction() {
- super("Install", JBossCentralActivator.imageDescriptorFromPlugin(JBossCentralActivator.PLUGIN_ID, "/icons/repository-submit.gif"));
+ super("Install", JBossCentralActivator.imageDescriptorFromPlugin(JBossCentralActivator.PLUGIN_ID, ICON_INSTALL));
}
@Override
13 years, 1 month
JBoss Tools SVN: r36454 - trunk/seam/tests/org.jboss.tools.seam.ui.test/src/org/jboss/tools/seam/ui/test/marker.
by jbosstools-commits@lists.jboss.org
Author: dazarov
Date: 2011-11-18 13:46:37 -0500 (Fri, 18 Nov 2011)
New Revision: 36454
Modified:
trunk/seam/tests/org.jboss.tools.seam.ui.test/src/org/jboss/tools/seam/ui/test/marker/SeamMarkerResolutionTest.java
Log:
"Configure Problem Severity" quick fix for every JBDS Problem Markers which opens Preferences Dialog filtered with current problem https://issues.jboss.org/browse/JBIDE-9885
Modified: trunk/seam/tests/org.jboss.tools.seam.ui.test/src/org/jboss/tools/seam/ui/test/marker/SeamMarkerResolutionTest.java
===================================================================
--- trunk/seam/tests/org.jboss.tools.seam.ui.test/src/org/jboss/tools/seam/ui/test/marker/SeamMarkerResolutionTest.java 2011-11-18 18:15:10 UTC (rev 36453)
+++ trunk/seam/tests/org.jboss.tools.seam.ui.test/src/org/jboss/tools/seam/ui/test/marker/SeamMarkerResolutionTest.java 2011-11-18 18:46:37 UTC (rev 36454)
@@ -27,6 +27,7 @@
import org.eclipse.jface.preference.IPreferenceStore;
import org.eclipse.ui.IMarkerResolution;
import org.eclipse.ui.ide.IDE;
+import org.jboss.tools.common.ui.marker.ConfigureProblemSeverityMarkerResolution;
import org.jboss.tools.jst.web.kb.PageContextFactory;
import org.jboss.tools.seam.core.SeamCoreBuilder;
import org.jboss.tools.seam.core.SeamCorePlugin;
@@ -48,6 +49,14 @@
//public static final String TEXT_MARKER_TYPE = "org.eclipse.wst.validation.textmarker";
private IProject project;
+
+ private void checkForConfigureProblemSeverity(IMarkerResolution[] resolutions){
+ for(IMarkerResolution resolution : resolutions){
+ if(resolution.getClass().equals(ConfigureProblemSeverityMarkerResolution.class))
+ return;
+ }
+ fail("Configure Problem Severity marker resolution not found");
+ }
@Override
protected void setUp() throws Exception {
@@ -325,6 +334,7 @@
IMarker marker = markers[i];
IMarkerResolution[] resolutions = IDE.getMarkerHelpRegistry()
.getResolutions(marker);
+ checkForConfigureProblemSeverity(resolutions);
for (int j = 0; j < resolutions.length; j++) {
IMarkerResolution resolution = resolutions[j];
if (resolution instanceof DeleteAnnotationMarkerResolution) {
@@ -357,6 +367,7 @@
IMarker marker = markers[i];
IMarkerResolution[] resolutions = IDE.getMarkerHelpRegistry()
.getResolutions(marker);
+ checkForConfigureProblemSeverity(resolutions);
for (int j = 0; j < resolutions.length; j++) {
IMarkerResolution resolution = resolutions[j];
if (resolution instanceof AddAnnotatedMethodMarkerResolution) {
@@ -385,6 +396,7 @@
IMarker marker = markers[i];
IMarkerResolution[] resolutions = IDE.getMarkerHelpRegistry()
.getResolutions(marker);
+ checkForConfigureProblemSeverity(resolutions);
for (int j = 0; j < resolutions.length; j++) {
IMarkerResolution resolution = resolutions[j];
if (resolution instanceof AddAnnotatedMethodMarkerResolution) {
@@ -413,6 +425,7 @@
IMarker marker = markers[i];
IMarkerResolution[] resolutions = IDE.getMarkerHelpRegistry()
.getResolutions(marker);
+ checkForConfigureProblemSeverity(resolutions);
for (int j = 0; j < resolutions.length; j++) {
IMarkerResolution resolution = resolutions[j];
if (resolution instanceof ChangeScopeMarkerResolution) {
@@ -437,6 +450,7 @@
IMarker marker = markers[i];
IMarkerResolution[] resolutions = IDE.getMarkerHelpRegistry()
.getResolutions(marker);
+ checkForConfigureProblemSeverity(resolutions);
for (int j = 0; j < resolutions.length; j++) {
IMarkerResolution resolution = resolutions[j];
if (resolution instanceof ChangeScopeMarkerResolution) {
@@ -469,6 +483,7 @@
IMarker marker = markers[i];
IMarkerResolution[] resolutions = IDE.getMarkerHelpRegistry()
.getResolutions(marker);
+ checkForConfigureProblemSeverity(resolutions);
for (int j = 0; j < resolutions.length; j++) {
IMarkerResolution resolution = resolutions[j];
if (resolution instanceof AddSetterMarkerResolution) {
13 years, 1 month
JBoss Tools SVN: r36453 - trunk/cdi/tests/org.jboss.tools.cdi.ui.test/src/org/jboss/tools/cdi/ui/test/marker.
by jbosstools-commits@lists.jboss.org
Author: dazarov
Date: 2011-11-18 13:15:10 -0500 (Fri, 18 Nov 2011)
New Revision: 36453
Modified:
trunk/cdi/tests/org.jboss.tools.cdi.ui.test/src/org/jboss/tools/cdi/ui/test/marker/CDIMarkerResolutionTest.java
Log:
"Configure Problem Severity" quick fix for every JBDS Problem Markers which opens Preferences Dialog filtered with current problem https://issues.jboss.org/browse/JBIDE-9885
Modified: trunk/cdi/tests/org.jboss.tools.cdi.ui.test/src/org/jboss/tools/cdi/ui/test/marker/CDIMarkerResolutionTest.java
===================================================================
--- trunk/cdi/tests/org.jboss.tools.cdi.ui.test/src/org/jboss/tools/cdi/ui/test/marker/CDIMarkerResolutionTest.java 2011-11-18 18:01:38 UTC (rev 36452)
+++ trunk/cdi/tests/org.jboss.tools.cdi.ui.test/src/org/jboss/tools/cdi/ui/test/marker/CDIMarkerResolutionTest.java 2011-11-18 18:15:10 UTC (rev 36453)
@@ -43,6 +43,7 @@
import org.jboss.tools.cdi.ui.marker.TestableResolutionWithDialog;
import org.jboss.tools.cdi.ui.marker.TestableResolutionWithRefactoringProcessor;
import org.jboss.tools.common.base.test.validation.TestUtil;
+import org.jboss.tools.common.ui.marker.ConfigureProblemSeverityMarkerResolution;
import org.jboss.tools.common.util.FileUtil;
/**
@@ -51,6 +52,14 @@
*/
public class CDIMarkerResolutionTest extends TCKTest {
+ private void checkForConfigureProblemSeverity(IMarkerResolution[] resolutions){
+ for(IMarkerResolution resolution : resolutions){
+ if(resolution.getClass().equals(ConfigureProblemSeverityMarkerResolution.class))
+ return;
+ }
+ fail("Configure Problem Severity marker resolution not found");
+ }
+
private void checkResolution(IProject project, String[] fileNames, String markerType, String idName, int id, Class<? extends IMarkerResolution> resolutionClass) throws CoreException {
checkResolution(project, fileNames, new String[]{}, markerType, idName, id, resolutionClass);
}
@@ -76,6 +85,7 @@
if(messageId == id){
IMarkerResolution[] resolutions = IDE.getMarkerHelpRegistry()
.getResolutions(marker);
+ checkForConfigureProblemSeverity(resolutions);
for (int j = 0; j < resolutions.length; j++) {
IMarkerResolution resolution = resolutions[j];
if (resolution.getClass().equals(resolutionClass)) {
13 years, 1 month
JBoss Tools SVN: r36452 - trunk/common/plugins/org.jboss.tools.common.ui/META-INF.
by jbosstools-commits@lists.jboss.org
Author: dazarov
Date: 2011-11-18 13:01:38 -0500 (Fri, 18 Nov 2011)
New Revision: 36452
Modified:
trunk/common/plugins/org.jboss.tools.common.ui/META-INF/MANIFEST.MF
Log:
"Configure Problem Severity" quick fix for every JBDS Problem Markers which opens Preferences Dialog filtered with current problem https://issues.jboss.org/browse/JBIDE-9885
Modified: trunk/common/plugins/org.jboss.tools.common.ui/META-INF/MANIFEST.MF
===================================================================
--- trunk/common/plugins/org.jboss.tools.common.ui/META-INF/MANIFEST.MF 2011-11-18 17:38:06 UTC (rev 36451)
+++ trunk/common/plugins/org.jboss.tools.common.ui/META-INF/MANIFEST.MF 2011-11-18 18:01:38 UTC (rev 36452)
@@ -25,6 +25,7 @@
org.jboss.tools.common.validation;bundle-version="3.3.0"
Export-Package: org.jboss.tools.common.ui,
org.jboss.tools.common.ui.databinding,
+ org.jboss.tools.common.ui.marker,
org.jboss.tools.common.ui.preferences,
org.jboss.tools.common.ui.preferencevalue,
org.jboss.tools.common.ui.ssh,
13 years, 1 month
JBoss Tools SVN: r36451 - trunk/cdi/plugins/org.jboss.tools.cdi.ui/src/org/jboss/tools/cdi/ui/refactoring.
by jbosstools-commits@lists.jboss.org
Author: dazarov
Date: 2011-11-18 12:38:06 -0500 (Fri, 18 Nov 2011)
New Revision: 36451
Modified:
trunk/cdi/plugins/org.jboss.tools.cdi.ui/src/org/jboss/tools/cdi/ui/refactoring/CDIRefactoringProcessor.java
Log:
Quickfix and Wizard for fixing ambigious injection warning is confusing https://issues.jboss.org/browse/JBIDE-9940
Modified: trunk/cdi/plugins/org.jboss.tools.cdi.ui/src/org/jboss/tools/cdi/ui/refactoring/CDIRefactoringProcessor.java
===================================================================
--- trunk/cdi/plugins/org.jboss.tools.cdi.ui/src/org/jboss/tools/cdi/ui/refactoring/CDIRefactoringProcessor.java 2011-11-18 17:19:53 UTC (rev 36450)
+++ trunk/cdi/plugins/org.jboss.tools.cdi.ui/src/org/jboss/tools/cdi/ui/refactoring/CDIRefactoringProcessor.java 2011-11-18 17:38:06 UTC (rev 36451)
@@ -185,24 +185,25 @@
super.releaseDocument(document, pm);
final IEditorPart editor = getEditor(getFile());
-
- IRunnableContext context = new ProgressMonitorDialog(editor.getSite().getShell());
-
- IRunnableWithProgress resolutionsRunnable = new IRunnableWithProgress() {
- public void run(IProgressMonitor monitor) {
- IEditorPart editor = getEditor(getFile());
- if(editor != null){
- editor.doSave(new NullProgressMonitor());
+ if(editor != null){
+ IRunnableContext context = new ProgressMonitorDialog(editor.getSite().getShell());
+
+ IRunnableWithProgress resolutionsRunnable = new IRunnableWithProgress() {
+ public void run(IProgressMonitor monitor) {
+ IEditorPart editor = getEditor(getFile());
+ if(editor != null){
+ editor.doSave(new NullProgressMonitor());
+ }
}
+ };
+ try {
+ PlatformUI.getWorkbench().getProgressService().runInUI(context,
+ resolutionsRunnable, null);
+ } catch (InvocationTargetException e) {
+ CDIUIPlugin.getDefault().logError(e);
+ } catch (InterruptedException e) {
+ CDIUIPlugin.getDefault().logError(e);
}
- };
- try {
- PlatformUI.getWorkbench().getProgressService().runInUI(context,
- resolutionsRunnable, null);
- } catch (InvocationTargetException e) {
- CDIUIPlugin.getDefault().logError(e);
- } catch (InterruptedException e) {
- CDIUIPlugin.getDefault().logError(e);
}
}
13 years, 1 month
JBoss Tools SVN: r36450 - branches/hibernatetools-multiversion2/plugins/org.hibernate.eclipse.mapper.
by jbosstools-commits@lists.jboss.org
Author: dgolovin
Date: 2011-11-18 12:19:53 -0500 (Fri, 18 Nov 2011)
New Revision: 36450
Modified:
branches/hibernatetools-multiversion2/plugins/org.hibernate.eclipse.mapper/plugin.xml
Log:
update for XML catalog
Modified: branches/hibernatetools-multiversion2/plugins/org.hibernate.eclipse.mapper/plugin.xml
===================================================================
--- branches/hibernatetools-multiversion2/plugins/org.hibernate.eclipse.mapper/plugin.xml 2011-11-18 17:12:23 UTC (rev 36449)
+++ branches/hibernatetools-multiversion2/plugins/org.hibernate.eclipse.mapper/plugin.xml 2011-11-18 17:19:53 UTC (rev 36450)
@@ -131,14 +131,14 @@
<extension point = "org.eclipse.wst.xml.core.catalogContributions">
<catalogContribution>
<public publicId="-//Hibernate/Hibernate Mapping DTD 3.0//EN"
- uri="jar:platform:/plugin/org.hibernate.eclipse/lib/hibernate/hibernate3.jar!/org/hibernate/hibernate-mapping-3.0.dtd"
+ uri="jar:platform:/plugin/org.hibernate.eclipse.libs/lib/hibernate/hibernate3.jar!/org/hibernate/hibernate-mapping-3.0.dtd"
webURL="http://hibernate.sourceforge.net/hibernate-mapping-3.0.dtd"/>
<public publicId="-//Hibernate/Hibernate Configuration DTD 3.0//EN"
- uri="jar:platform:/plugin/org.hibernate.eclipse/lib/hibernate/hibernate3.jar!/org/hibernate/hibernate-configuration-3.0.dtd"
+ uri="jar:platform:/plugin/org.hibernate.eclipse.libs/lib/hibernate/hibernate3.jar!/org/hibernate/hibernate-configuration-3.0.dtd"
webURL="http://hibernate.sourceforge.net/hibernate-configuration-3.0.dtd"/>
<public
publicId="-//Hibernate/Hibernate Reverse Engineering DTD 3.0//EN"
- uri="jar:platform:/plugin/org.hibernate.eclipse/lib/tools/hibernate-tools.jar!/org/hibernate/hibernate-reverse-engineering-3.0.dtd"/>
+ uri="jar:platform:/plugin/org.hibernate.eclipse.libs/lib/tools/hibernate-tools.jar!/org/hibernate/hibernate-reverse-engineering-3.0.dtd"/>
</catalogContribution>
</extension>
13 years, 1 month