JBoss Tools SVN: r3977 - tags/richfaces-2.0.0.beta4.
by jbosstools-commits@lists.jboss.org
Author: dgolovin
Date: 2007-10-02 17:22:42 -0400 (Tue, 02 Oct 2007)
New Revision: 3977
Removed:
tags/richfaces-2.0.0.beta4/common/
tags/richfaces-2.0.0.beta4/jsf/
tags/richfaces-2.0.0.beta4/jst/
tags/richfaces-2.0.0.beta4/vpe/
Log:
17 years, 3 months
JBoss Tools SVN: r3976 - trunk/as/plugins/org.jboss.ide.eclipse.as.ui/jbossui/org/jboss/ide/eclipse/as/ui/views/server.
by jbosstools-commits@lists.jboss.org
Author: rob.stryker(a)jboss.com
Date: 2007-10-02 17:07:12 -0400 (Tue, 02 Oct 2007)
New Revision: 3976
Modified:
trunk/as/plugins/org.jboss.ide.eclipse.as.ui/jbossui/org/jboss/ide/eclipse/as/ui/views/server/ServerExtensionFrame.java
Log:
suspected inconsistancy in obtaining stale server object
Modified: trunk/as/plugins/org.jboss.ide.eclipse.as.ui/jbossui/org/jboss/ide/eclipse/as/ui/views/server/ServerExtensionFrame.java
===================================================================
--- trunk/as/plugins/org.jboss.ide.eclipse.as.ui/jbossui/org/jboss/ide/eclipse/as/ui/views/server/ServerExtensionFrame.java 2007-10-02 21:05:44 UTC (rev 3975)
+++ trunk/as/plugins/org.jboss.ide.eclipse.as.ui/jbossui/org/jboss/ide/eclipse/as/ui/views/server/ServerExtensionFrame.java 2007-10-02 21:07:12 UTC (rev 3976)
@@ -14,6 +14,9 @@
import org.eclipse.swt.widgets.Menu;
import org.eclipse.swt.widgets.Shell;
import org.eclipse.swt.widgets.Tree;
+import org.eclipse.wst.server.core.IModule;
+import org.eclipse.wst.server.core.IServer;
+import org.eclipse.wst.server.core.ServerCore;
import org.eclipse.wst.server.ui.internal.view.servers.ModuleServer;
import org.jboss.ide.eclipse.as.ui.views.server.JBossServerView.IServerViewFrame;
@@ -71,7 +74,9 @@
if( selection == null ) return;
if( server != jbViewer.getInput()) {
- jbViewer.setInput(server);
+ // find the newest copy of the server
+ IServer tmp = ServerCore.findServer(((IServer)server).getId());
+ jbViewer.setInput(tmp);
} else {
jbViewer.refresh();
}
17 years, 3 months
JBoss Tools SVN: r3975 - trunk/as/plugins/org.jboss.ide.eclipse.as.ui.mbeans/icons/ctool16.
by jbosstools-commits@lists.jboss.org
Author: rob.stryker(a)jboss.com
Date: 2007-10-02 17:05:44 -0400 (Tue, 02 Oct 2007)
New Revision: 3975
Added:
trunk/as/plugins/org.jboss.ide.eclipse.as.ui.mbeans/icons/ctool16/newclass_wiz.gif
Log:
ejb icons missing
Added: trunk/as/plugins/org.jboss.ide.eclipse.as.ui.mbeans/icons/ctool16/newclass_wiz.gif
===================================================================
(Binary files differ)
Property changes on: trunk/as/plugins/org.jboss.ide.eclipse.as.ui.mbeans/icons/ctool16/newclass_wiz.gif
___________________________________________________________________
Name: svn:mime-type
+ application/octet-stream
17 years, 3 months
JBoss Tools SVN: r3973 - trunk/seam/plugins/org.jboss.tools.seam.core/src/org/jboss/tools/seam/internal/core/project/facet.
by jbosstools-commits@lists.jboss.org
Author: rob.stryker(a)jboss.com
Date: 2007-10-02 17:03:02 -0400 (Tue, 02 Oct 2007)
New Revision: 3973
Modified:
trunk/seam/plugins/org.jboss.tools.seam.core/src/org/jboss/tools/seam/internal/core/project/facet/DataSourceXmlDeployer.java
Log:
File must remain deployable else things go wrong.
Modified: trunk/seam/plugins/org.jboss.tools.seam.core/src/org/jboss/tools/seam/internal/core/project/facet/DataSourceXmlDeployer.java
===================================================================
--- trunk/seam/plugins/org.jboss.tools.seam.core/src/org/jboss/tools/seam/internal/core/project/facet/DataSourceXmlDeployer.java 2007-10-02 20:36:13 UTC (rev 3972)
+++ trunk/seam/plugins/org.jboss.tools.seam.core/src/org/jboss/tools/seam/internal/core/project/facet/DataSourceXmlDeployer.java 2007-10-02 21:03:02 UTC (rev 3973)
@@ -108,7 +108,6 @@
IStatus t = deployer.publishOneModule(IServer.PUBLISH_FULL,
new IModule[] { module }, ServerBehaviourDelegate.ADDED,
monitor);
- SingleDeployableFactory.unmakeDeployable(append);
return t;
} else {
return new Status(Status.WARNING, SeamCorePlugin.PLUGIN_ID,
17 years, 3 months
JBoss Tools SVN: r3972 - trunk/seam/plugins/org.jboss.tools.seam.core/src/org/jboss/tools/seam/internal/core.
by jbosstools-commits@lists.jboss.org
Author: max.andersen(a)jboss.com
Date: 2007-10-02 16:36:13 -0400 (Tue, 02 Oct 2007)
New Revision: 3972
Modified:
trunk/seam/plugins/org.jboss.tools.seam.core/src/org/jboss/tools/seam/internal/core/SeamPreferenceInitializer.java
Log:
JBIDE-996 Getter/Setter validation should be set to ignore by default to avoid to many false hits
Modified: trunk/seam/plugins/org.jboss.tools.seam.core/src/org/jboss/tools/seam/internal/core/SeamPreferenceInitializer.java
===================================================================
--- trunk/seam/plugins/org.jboss.tools.seam.core/src/org/jboss/tools/seam/internal/core/SeamPreferenceInitializer.java 2007-10-02 16:22:51 UTC (rev 3971)
+++ trunk/seam/plugins/org.jboss.tools.seam.core/src/org/jboss/tools/seam/internal/core/SeamPreferenceInitializer.java 2007-10-02 20:36:13 UTC (rev 3972)
@@ -33,6 +33,6 @@
}
defaultPreferences.put(SeamPreferences.INVALID_EXPRESSION, SeamPreferences.WARNING);
defaultPreferences.put(SeamPreferences.UNKNOWN_VARIABLE_NAME, SeamPreferences.WARNING);
- defaultPreferences.put(SeamPreferences.UNPAIRED_GETTER_OR_SETTER, SeamPreferences.WARNING);
+ defaultPreferences.put(SeamPreferences.UNPAIRED_GETTER_OR_SETTER, SeamPreferences.IGNORE);
}
}
\ No newline at end of file
17 years, 3 months
JBoss Tools SVN: r3971 - trunk/core/plugins/org.jboss.ide.eclipse.archives.ui/META-INF.
by jbosstools-commits@lists.jboss.org
Author: mculpepper(a)jboss.com
Date: 2007-10-02 12:22:51 -0400 (Tue, 02 Oct 2007)
New Revision: 3971
Modified:
trunk/core/plugins/org.jboss.ide.eclipse.archives.ui/META-INF/MANIFEST.MF
Log:
updated provider [RHDS-204]
Modified: trunk/core/plugins/org.jboss.ide.eclipse.archives.ui/META-INF/MANIFEST.MF
===================================================================
--- trunk/core/plugins/org.jboss.ide.eclipse.archives.ui/META-INF/MANIFEST.MF 2007-10-02 16:21:09 UTC (rev 3970)
+++ trunk/core/plugins/org.jboss.ide.eclipse.archives.ui/META-INF/MANIFEST.MF 2007-10-02 16:22:51 UTC (rev 3971)
@@ -21,3 +21,4 @@
org.jboss.ide.eclipse.archives.ui.views,
org.jboss.ide.eclipse.archives.ui.wizards,
org.jboss.ide.eclipse.archives.ui.wizards.pages
+Bundle-Vendor: JBoss, a division of Red Hat
17 years, 3 months
JBoss Tools SVN: r3970 - trunk/common/plugins/org.jboss.tools.common.gef.
by jbosstools-commits@lists.jboss.org
Author: mculpepper(a)jboss.com
Date: 2007-10-02 12:21:09 -0400 (Tue, 02 Oct 2007)
New Revision: 3970
Modified:
trunk/common/plugins/org.jboss.tools.common.gef/build.properties
Log:
build.properties didn't include plugin.properties (making pluginName/provider invisible) [RHDS-204]
Modified: trunk/common/plugins/org.jboss.tools.common.gef/build.properties
===================================================================
--- trunk/common/plugins/org.jboss.tools.common.gef/build.properties 2007-10-02 16:19:19 UTC (rev 3969)
+++ trunk/common/plugins/org.jboss.tools.common.gef/build.properties 2007-10-02 16:21:09 UTC (rev 3970)
@@ -1,7 +1,8 @@
bin.includes = plugin.xml,\
*.jar,\
common-gef.jar,\
- META-INF/
+ META-INF/,\
+ plugin.properties
source.common-gef.jar = resources/,\
src/
jars.compile.order = common-gef.jar
17 years, 3 months
JBoss Tools SVN: r3969 - in trunk/core/plugins: org.jboss.ide.eclipse.archives.ui/META-INF and 1 other directory.
by jbosstools-commits@lists.jboss.org
Author: mculpepper(a)jboss.com
Date: 2007-10-02 12:19:19 -0400 (Tue, 02 Oct 2007)
New Revision: 3969
Modified:
trunk/core/plugins/org.jboss.ide.eclipse.archives.core/META-INF/MANIFEST.MF
trunk/core/plugins/org.jboss.ide.eclipse.archives.ui/META-INF/MANIFEST.MF
Log:
updated plugin names [RHDS-204]
Modified: trunk/core/plugins/org.jboss.ide.eclipse.archives.core/META-INF/MANIFEST.MF
===================================================================
--- trunk/core/plugins/org.jboss.ide.eclipse.archives.core/META-INF/MANIFEST.MF 2007-10-02 16:10:14 UTC (rev 3968)
+++ trunk/core/plugins/org.jboss.ide.eclipse.archives.core/META-INF/MANIFEST.MF 2007-10-02 16:19:19 UTC (rev 3969)
@@ -1,6 +1,6 @@
Manifest-Version: 1.0
Bundle-ManifestVersion: 2
-Bundle-Name: JBossIDE Packages Core Plug-in
+Bundle-Name: JBossTools Archives Core Plugin
Bundle-SymbolicName: org.jboss.ide.eclipse.archives.core;singleton:=true
Bundle-Version: 2.0.0
Bundle-Activator: org.jboss.ide.eclipse.archives.core.ArchivesCorePlugin
Modified: trunk/core/plugins/org.jboss.ide.eclipse.archives.ui/META-INF/MANIFEST.MF
===================================================================
--- trunk/core/plugins/org.jboss.ide.eclipse.archives.ui/META-INF/MANIFEST.MF 2007-10-02 16:10:14 UTC (rev 3968)
+++ trunk/core/plugins/org.jboss.ide.eclipse.archives.ui/META-INF/MANIFEST.MF 2007-10-02 16:19:19 UTC (rev 3969)
@@ -1,6 +1,6 @@
Manifest-Version: 1.0
Bundle-ManifestVersion: 2
-Bundle-Name: Ui Plug-in
+Bundle-Name: JBossTools Archives UI Plugin
Bundle-SymbolicName: org.jboss.ide.eclipse.archives.ui;singleton:=true
Bundle-Version: 1.0.0
Bundle-Activator: org.jboss.ide.eclipse.archives.ui.PackagesUIPlugin
17 years, 3 months
JBoss Tools SVN: r3968 - trunk/hibernatetools/plugins/org.jboss.tools.hibernate.ui.view/src/org/jboss/tools/hibernate/ui/view/views.
by jbosstools-commits@lists.jboss.org
Author: mdryakhlenkov
Date: 2007-10-02 12:10:14 -0400 (Tue, 02 Oct 2007)
New Revision: 3968
Modified:
trunk/hibernatetools/plugins/org.jboss.tools.hibernate.ui.view/src/org/jboss/tools/hibernate/ui/view/views/ObjectEditorInput.java
Log:
Diagram for one class open again in new editor. Bug fixed.
Modified: trunk/hibernatetools/plugins/org.jboss.tools.hibernate.ui.view/src/org/jboss/tools/hibernate/ui/view/views/ObjectEditorInput.java
===================================================================
--- trunk/hibernatetools/plugins/org.jboss.tools.hibernate.ui.view/src/org/jboss/tools/hibernate/ui/view/views/ObjectEditorInput.java 2007-10-02 15:36:48 UTC (rev 3967)
+++ trunk/hibernatetools/plugins/org.jboss.tools.hibernate.ui.view/src/org/jboss/tools/hibernate/ui/view/views/ObjectEditorInput.java 2007-10-02 16:10:14 UTC (rev 3968)
@@ -76,4 +76,11 @@
return javaProject;
}
+ public boolean equals(Object obj) {
+ if (obj instanceof ObjectEditorInput && ((ObjectEditorInput)obj).fObject == fObject) {
+ return true;
+ } else {
+ return false;
+ }
+ }
}
17 years, 3 months