JBoss Tools SVN: r16032 - trunk/as/plugins/org.jboss.ide.eclipse.as.ui/jbossui/org/jboss/ide/eclipse/as/ui/editor.
by jbosstools-commits@lists.jboss.org
Author: rob.stryker(a)jboss.com
Date: 2009-06-18 06:19:41 -0400 (Thu, 18 Jun 2009)
New Revision: 16032
Modified:
trunk/as/plugins/org.jboss.ide.eclipse.as.ui/jbossui/org/jboss/ide/eclipse/as/ui/editor/PortSection.java
Log:
JBIDE-4505
Modified: trunk/as/plugins/org.jboss.ide.eclipse.as.ui/jbossui/org/jboss/ide/eclipse/as/ui/editor/PortSection.java
===================================================================
--- trunk/as/plugins/org.jboss.ide.eclipse.as.ui/jbossui/org/jboss/ide/eclipse/as/ui/editor/PortSection.java 2009-06-18 10:18:13 UTC (rev 16031)
+++ trunk/as/plugins/org.jboss.ide.eclipse.as.ui/jbossui/org/jboss/ide/eclipse/as/ui/editor/PortSection.java 2009-06-18 10:19:41 UTC (rev 16032)
@@ -86,8 +86,10 @@
public static class JNDIPortEditorExtension extends PortEditorExtension {
public JNDIPortEditorExtension() {
- super(Messages.EditorJNDIPort, IJBossServerConstants.JNDI_PORT_DETECT_XPATH,
+ super(Messages.EditorJNDIPort,
+ IJBossServerConstants.JNDI_PORT_DETECT_XPATH,
IJBossServerConstants.JNDI_PORT_DETECT,
+ IJBossServerConstants.JNDI_PORT,
IJBossServerConstants.JNDI_PORT_DEFAULT_XPATH);
}
public ServerCommand getCommand() {
@@ -108,8 +110,10 @@
public static class WebPortEditorExtension extends PortEditorExtension {
public WebPortEditorExtension() {
- super(Messages.EditorWebPort, IJBossServerConstants.WEB_PORT_DETECT_XPATH,
+ super(Messages.EditorWebPort,
+ IJBossServerConstants.WEB_PORT_DETECT_XPATH,
IJBossServerConstants.WEB_PORT_DETECT,
+ IJBossServerConstants.WEB_PORT,
IJBossServerConstants.WEB_PORT_DEFAULT_XPATH);
}
@@ -134,15 +138,17 @@
protected Text text;
protected Label label;
protected Link link;
- protected String labelText, currentXPathKey, detectXPathKey, defaultXPath;
+ protected String labelText, currentXPathKey, detectXPathKey, overrideValueKey, defaultXPath;
protected String currentXPath;
protected ServerAttributeHelper helper;
protected Listener listener;
protected PortSection section;
- public PortEditorExtension(String labelText, String currentXPathKey, String detectXPathKey, String defaultXPath) {
+ public PortEditorExtension(String labelText, String currentXPathKey,
+ String detectXPathKey, String overrideValueKey, String defaultXPath) {
this.labelText = labelText;
this.currentXPathKey = currentXPathKey;
this.detectXPathKey = detectXPathKey;
+ this.overrideValueKey = overrideValueKey;
this.defaultXPath = defaultXPath;
}
public void setServerAttributeHelper(ServerAttributeHelper helper) {
@@ -203,7 +209,7 @@
if( shouldDetect )
text.setText(findPort(helper.getServer(), new Path(currentXPath)));
else
- text.setText(helper.getAttribute(IJBossServerConstants.JNDI_PORT, "")); //$NON-NLS-1$
+ text.setText(helper.getAttribute(overrideValueKey, "")); //$NON-NLS-1$
}
protected void addListeners() {
listener = new Listener() {
15 years, 6 months
JBoss Tools SVN: r16031 - branches/jbosstools-3.0.x/as/plugins/org.jboss.ide.eclipse.as.ui/jbossui/org/jboss/ide/eclipse/as/ui/editor.
by jbosstools-commits@lists.jboss.org
Author: rob.stryker(a)jboss.com
Date: 2009-06-18 06:18:13 -0400 (Thu, 18 Jun 2009)
New Revision: 16031
Modified:
branches/jbosstools-3.0.x/as/plugins/org.jboss.ide.eclipse.as.ui/jbossui/org/jboss/ide/eclipse/as/ui/editor/PortSection.java
Log:
JBIDE-4505
Modified: branches/jbosstools-3.0.x/as/plugins/org.jboss.ide.eclipse.as.ui/jbossui/org/jboss/ide/eclipse/as/ui/editor/PortSection.java
===================================================================
--- branches/jbosstools-3.0.x/as/plugins/org.jboss.ide.eclipse.as.ui/jbossui/org/jboss/ide/eclipse/as/ui/editor/PortSection.java 2009-06-18 09:46:49 UTC (rev 16030)
+++ branches/jbosstools-3.0.x/as/plugins/org.jboss.ide.eclipse.as.ui/jbossui/org/jboss/ide/eclipse/as/ui/editor/PortSection.java 2009-06-18 10:18:13 UTC (rev 16031)
@@ -86,8 +86,10 @@
public static class JNDIPortEditorExtension extends PortEditorExtension {
public JNDIPortEditorExtension() {
- super(Messages.EditorJNDIPort, IJBossServerConstants.JNDI_PORT_DETECT_XPATH,
+ super(Messages.EditorJNDIPort,
+ IJBossServerConstants.JNDI_PORT_DETECT_XPATH,
IJBossServerConstants.JNDI_PORT_DETECT,
+ IJBossServerConstants.JNDI_PORT,
IJBossServerConstants.JNDI_PORT_DEFAULT_XPATH);
}
public ServerCommand getCommand() {
@@ -108,8 +110,10 @@
public static class WebPortEditorExtension extends PortEditorExtension {
public WebPortEditorExtension() {
- super(Messages.EditorWebPort, IJBossServerConstants.WEB_PORT_DETECT_XPATH,
+ super(Messages.EditorWebPort,
+ IJBossServerConstants.WEB_PORT_DETECT_XPATH,
IJBossServerConstants.WEB_PORT_DETECT,
+ IJBossServerConstants.WEB_PORT,
IJBossServerConstants.WEB_PORT_DEFAULT_XPATH);
}
@@ -134,15 +138,17 @@
protected Text text;
protected Label label;
protected Link link;
- protected String labelText, currentXPathKey, detectXPathKey, defaultXPath;
+ protected String labelText, currentXPathKey, detectXPathKey, overrideValueKey, defaultXPath;
protected String currentXPath;
protected ServerAttributeHelper helper;
protected Listener listener;
protected PortSection section;
- public PortEditorExtension(String labelText, String currentXPathKey, String detectXPathKey, String defaultXPath) {
+ public PortEditorExtension(String labelText, String currentXPathKey,
+ String detectXPathKey, String overrideValueKey, String defaultXPath) {
this.labelText = labelText;
this.currentXPathKey = currentXPathKey;
this.detectXPathKey = detectXPathKey;
+ this.overrideValueKey = overrideValueKey;
this.defaultXPath = defaultXPath;
}
public void setServerAttributeHelper(ServerAttributeHelper helper) {
@@ -203,7 +209,7 @@
if( shouldDetect )
text.setText(findPort(helper.getServer(), new Path(currentXPath)));
else
- text.setText(helper.getAttribute(IJBossServerConstants.JNDI_PORT, ""));
+ text.setText(helper.getAttribute(overrideValueKey, ""));
}
protected void addListeners() {
listener = new Listener() {
15 years, 6 months
JBoss Tools SVN: r16030 - trunk/ws/docs/reference/en/images/topdown.
by jbosstools-commits@lists.jboss.org
Author: Grid.Qian
Date: 2009-06-18 05:46:49 -0400 (Thu, 18 Jun 2009)
New Revision: 16030
Modified:
trunk/ws/docs/reference/en/images/topdown/jbossws_facet_0.png
Log:
JBDS-673: modify the pic's size
Modified: trunk/ws/docs/reference/en/images/topdown/jbossws_facet_0.png
===================================================================
(Binary files differ)
15 years, 6 months
JBoss Tools SVN: r16029 - trunk/as/plugins/org.jboss.ide.eclipse.as.ui/jbossui/org/jboss/ide/eclipse/as/ui/editor.
by jbosstools-commits@lists.jboss.org
Author: rob.stryker(a)jboss.com
Date: 2009-06-18 05:44:55 -0400 (Thu, 18 Jun 2009)
New Revision: 16029
Modified:
trunk/as/plugins/org.jboss.ide.eclipse.as.ui/jbossui/org/jboss/ide/eclipse/as/ui/editor/DeploySection.java
Log:
JBIDE-4504
Modified: trunk/as/plugins/org.jboss.ide.eclipse.as.ui/jbossui/org/jboss/ide/eclipse/as/ui/editor/DeploySection.java
===================================================================
--- trunk/as/plugins/org.jboss.ide.eclipse.as.ui/jbossui/org/jboss/ide/eclipse/as/ui/editor/DeploySection.java 2009-06-18 09:20:19 UTC (rev 16028)
+++ trunk/as/plugins/org.jboss.ide.eclipse.as.ui/jbossui/org/jboss/ide/eclipse/as/ui/editor/DeploySection.java 2009-06-18 09:44:55 UTC (rev 16029)
@@ -61,6 +61,7 @@
import org.jboss.ide.eclipse.as.core.server.IDeployableServer;
import org.jboss.ide.eclipse.as.core.server.IJBossServerConstants;
import org.jboss.ide.eclipse.as.core.server.IJBossServerRuntime;
+import org.jboss.ide.eclipse.as.core.server.internal.JBossServer;
import org.jboss.ide.eclipse.as.core.server.internal.ServerAttributeHelper;
import org.jboss.ide.eclipse.as.core.util.ServerUtil;
import org.jboss.ide.eclipse.as.ui.JBossServerUIPlugin;
@@ -278,7 +279,7 @@
public IStatus[] getSaveStatus() {
String error = ""; //$NON-NLS-1$
List<Status> status = new ArrayList<Status>();
- if( getRuntime() == null ) {
+ if( getServer() instanceof JBossServer && getRuntime() == null ) {
String msg = Messages.EditorNoRuntimeSelected;
status.add(new Status(IStatus.ERROR, JBossServerUIPlugin.PLUGIN_ID, msg));
error = error + msg + "\n"; //$NON-NLS-1$
15 years, 6 months
JBoss Tools SVN: r16028 - branches/jbosstools-3.0.x/as/plugins/org.jboss.ide.eclipse.as.ui/jbossui/org/jboss/ide/eclipse/as/ui/views/server/extensions.
by jbosstools-commits@lists.jboss.org
Author: rob.stryker(a)jboss.com
Date: 2009-06-18 05:20:19 -0400 (Thu, 18 Jun 2009)
New Revision: 16028
Modified:
branches/jbosstools-3.0.x/as/plugins/org.jboss.ide.eclipse.as.ui/jbossui/org/jboss/ide/eclipse/as/ui/views/server/extensions/XPathActionProvider.java
Log:
JBIDE-4490 fixed in branch
Modified: branches/jbosstools-3.0.x/as/plugins/org.jboss.ide.eclipse.as.ui/jbossui/org/jboss/ide/eclipse/as/ui/views/server/extensions/XPathActionProvider.java
===================================================================
--- branches/jbosstools-3.0.x/as/plugins/org.jboss.ide.eclipse.as.ui/jbossui/org/jboss/ide/eclipse/as/ui/views/server/extensions/XPathActionProvider.java 2009-06-18 09:16:31 UTC (rev 16027)
+++ branches/jbosstools-3.0.x/as/plugins/org.jboss.ide.eclipse.as.ui/jbossui/org/jboss/ide/eclipse/as/ui/views/server/extensions/XPathActionProvider.java 2009-06-18 09:20:19 UTC (rev 16028)
@@ -98,30 +98,34 @@
newXPathAction = new Action() {
public void run() {
+ XPathCategory category = null;
if(selectedNode instanceof XPathCategory) {
- XPathCategory category = (XPathCategory) selectedNode;
- if (category != null) {
- String categoryName = category.getName();
- XPathDialog d = new XPathDialog(Display.getCurrent()
- .getActiveShell(), getServer(), categoryName);
- if (d.open() == Window.OK) {
- XPathCategory[] categoryList = XPathModel.getDefault()
- .getCategories(getServer());
- XPathCategory categoryItem = null;
- for (int i = 0; i < categoryList.length; i++) {
- if (categoryList[i].getName().equals(
- category.getName()))
- categoryItem = categoryList[i];
- }
- if (categoryItem != null) {
- XPathQuery query = new XPathQuery(d.getName(),
- XPathDialogs.getConfigFolder(getServer()),
- null, d.getXpath(), d.getAttribute());
- categoryItem.addQuery(query);
- XPathModel.getDefault().save(getServer());
- refreshViewer();
- }
+ category = (XPathCategory) selectedNode;
+ } else if( selectedNode instanceof XPathQuery) {
+ category = ((XPathQuery)selectedNode).getCategory();
+ }
+
+ if (category != null) {
+ String categoryName = category.getName();
+ XPathDialog d = new XPathDialog(Display.getCurrent()
+ .getActiveShell(), getServer(), categoryName);
+ if (d.open() == Window.OK) {
+ XPathCategory[] categoryList = XPathModel.getDefault()
+ .getCategories(getServer());
+ XPathCategory categoryItem = null;
+ for (int i = 0; i < categoryList.length; i++) {
+ if (categoryList[i].getName().equals(
+ category.getName()))
+ categoryItem = categoryList[i];
}
+ if (categoryItem != null) {
+ XPathQuery query = new XPathQuery(d.getName(),
+ XPathDialogs.getConfigFolder(getServer()),
+ null, d.getXpath(), d.getAttribute());
+ categoryItem.addQuery(query);
+ XPathModel.getDefault().save(getServer());
+ refreshViewer();
+ }
}
}
}
15 years, 6 months
JBoss Tools SVN: r16027 - trunk/as/plugins/org.jboss.ide.eclipse.as.ui/jbossui/org/jboss/ide/eclipse/as/ui/views/server/extensions.
by jbosstools-commits@lists.jboss.org
Author: rob.stryker(a)jboss.com
Date: 2009-06-18 05:16:31 -0400 (Thu, 18 Jun 2009)
New Revision: 16027
Modified:
trunk/as/plugins/org.jboss.ide.eclipse.as.ui/jbossui/org/jboss/ide/eclipse/as/ui/views/server/extensions/XPathActionProvider.java
Log:
JBIDE-4490 - action bug in opening xpath dialog
Modified: trunk/as/plugins/org.jboss.ide.eclipse.as.ui/jbossui/org/jboss/ide/eclipse/as/ui/views/server/extensions/XPathActionProvider.java
===================================================================
--- trunk/as/plugins/org.jboss.ide.eclipse.as.ui/jbossui/org/jboss/ide/eclipse/as/ui/views/server/extensions/XPathActionProvider.java 2009-06-18 08:52:31 UTC (rev 16026)
+++ trunk/as/plugins/org.jboss.ide.eclipse.as.ui/jbossui/org/jboss/ide/eclipse/as/ui/views/server/extensions/XPathActionProvider.java 2009-06-18 09:16:31 UTC (rev 16027)
@@ -98,30 +98,34 @@
newXPathAction = new Action() {
public void run() {
+ XPathCategory category = null;
if(selectedNode instanceof XPathCategory) {
- XPathCategory category = (XPathCategory) selectedNode;
- if (category != null) {
- String categoryName = category.getName();
- XPathDialog d = new XPathDialog(Display.getCurrent()
- .getActiveShell(), getServer(), categoryName);
- if (d.open() == Window.OK) {
- XPathCategory[] categoryList = XPathModel.getDefault()
- .getCategories(getServer());
- XPathCategory categoryItem = null;
- for (int i = 0; i < categoryList.length; i++) {
- if (categoryList[i].getName().equals(
- category.getName()))
- categoryItem = categoryList[i];
- }
- if (categoryItem != null) {
- XPathQuery query = new XPathQuery(d.getName(),
- XPathDialogs.getConfigFolder(getServer()),
- null, d.getXpath(), d.getAttribute());
- categoryItem.addQuery(query);
- XPathModel.getDefault().save(getServer());
- refreshViewer();
- }
+ category = (XPathCategory) selectedNode;
+ } else if( selectedNode instanceof XPathQuery) {
+ category = ((XPathQuery)selectedNode).getCategory();
+ }
+
+ if (category != null) {
+ String categoryName = category.getName();
+ XPathDialog d = new XPathDialog(Display.getCurrent()
+ .getActiveShell(), getServer(), categoryName);
+ if (d.open() == Window.OK) {
+ XPathCategory[] categoryList = XPathModel.getDefault()
+ .getCategories(getServer());
+ XPathCategory categoryItem = null;
+ for (int i = 0; i < categoryList.length; i++) {
+ if (categoryList[i].getName().equals(
+ category.getName()))
+ categoryItem = categoryList[i];
}
+ if (categoryItem != null) {
+ XPathQuery query = new XPathQuery(d.getName(),
+ XPathDialogs.getConfigFolder(getServer()),
+ null, d.getXpath(), d.getAttribute());
+ categoryItem.addQuery(query);
+ XPathModel.getDefault().save(getServer());
+ refreshViewer();
+ }
}
}
}
15 years, 6 months
JBoss Tools SVN: r16026 - trunk/bpel.
by jbosstools-commits@lists.jboss.org
Author: Grid.Qian
Date: 2009-06-18 04:52:31 -0400 (Thu, 18 Jun 2009)
New Revision: 16026
Added:
trunk/bpel/features/
Log:
15 years, 6 months
JBoss Tools SVN: r16025 - branches/jbosstools-3.0.x/as/plugins/org.jboss.ide.eclipse.as.core/jbosscore/org/jboss/ide/eclipse/as/core/publishers.
by jbosstools-commits@lists.jboss.org
Author: rob.stryker(a)jboss.com
Date: 2009-06-18 04:25:43 -0400 (Thu, 18 Jun 2009)
New Revision: 16025
Modified:
branches/jbosstools-3.0.x/as/plugins/org.jboss.ide.eclipse.as.core/jbosscore/org/jboss/ide/eclipse/as/core/publishers/JstPublisher.java
Log:
Issue Tracker: 303042
Modified: branches/jbosstools-3.0.x/as/plugins/org.jboss.ide.eclipse.as.core/jbosscore/org/jboss/ide/eclipse/as/core/publishers/JstPublisher.java
===================================================================
--- branches/jbosstools-3.0.x/as/plugins/org.jboss.ide.eclipse.as.core/jbosscore/org/jboss/ide/eclipse/as/core/publishers/JstPublisher.java 2009-06-18 07:58:29 UTC (rev 16024)
+++ branches/jbosstools-3.0.x/as/plugins/org.jboss.ide.eclipse.as.core/jbosscore/org/jboss/ide/eclipse/as/core/publishers/JstPublisher.java 2009-06-18 08:25:43 UTC (rev 16025)
@@ -318,7 +318,8 @@
}
finally{
try{
- packager.finished();
+ if( packager != null )
+ packager.finished();
}
catch(IOException e){
IStatus status = new Status(IStatus.ERROR, JBossServerCorePlugin.PLUGIN_ID, IEventCodes.JST_PUB_ASSEMBLE_FAIL,
15 years, 6 months
JBoss Tools SVN: r16024 - in trunk/smooks/plugins/org.jboss.tools.smooks.ui/src/org/jboss/tools/smooks/configuration/editors: uitls and 1 other directory.
by jbosstools-commits@lists.jboss.org
Author: DartPeng
Date: 2009-06-18 03:58:29 -0400 (Thu, 18 Jun 2009)
New Revision: 16024
Modified:
trunk/smooks/plugins/org.jboss.tools.smooks.ui/src/org/jboss/tools/smooks/configuration/editors/javabean/JavaBeanModelFactory.java
trunk/smooks/plugins/org.jboss.tools.smooks.ui/src/org/jboss/tools/smooks/configuration/editors/javabean/JavaPropertiesSelectionDialog.java
trunk/smooks/plugins/org.jboss.tools.smooks.ui/src/org/jboss/tools/smooks/configuration/editors/uitls/JavaPropertiesProposalProvider.java
Log:
JBIDE-4501
DONE
Modified: trunk/smooks/plugins/org.jboss.tools.smooks.ui/src/org/jboss/tools/smooks/configuration/editors/javabean/JavaBeanModelFactory.java
===================================================================
--- trunk/smooks/plugins/org.jboss.tools.smooks.ui/src/org/jboss/tools/smooks/configuration/editors/javabean/JavaBeanModelFactory.java 2009-06-18 04:49:01 UTC (rev 16023)
+++ trunk/smooks/plugins/org.jboss.tools.smooks.ui/src/org/jboss/tools/smooks/configuration/editors/javabean/JavaBeanModelFactory.java 2009-06-18 07:58:29 UTC (rev 16024)
@@ -49,6 +49,11 @@
return m;
}
+ /**
+ * @deprecated
+ * @param beanClass
+ * @return
+ */
public synchronized static JavaBeanModel getJavaBeanModel(Class<?> beanClass ) {
JavaBeanModel m = new JavaBeanModel(beanClass,false);
m.setRootClassModel(true);
Modified: trunk/smooks/plugins/org.jboss.tools.smooks.ui/src/org/jboss/tools/smooks/configuration/editors/javabean/JavaPropertiesSelectionDialog.java
===================================================================
--- trunk/smooks/plugins/org.jboss.tools.smooks.ui/src/org/jboss/tools/smooks/configuration/editors/javabean/JavaPropertiesSelectionDialog.java 2009-06-18 04:49:01 UTC (rev 16023)
+++ trunk/smooks/plugins/org.jboss.tools.smooks.ui/src/org/jboss/tools/smooks/configuration/editors/javabean/JavaPropertiesSelectionDialog.java 2009-06-18 07:58:29 UTC (rev 16024)
@@ -79,7 +79,7 @@
} else {
clazz = classLoader.loadClass(className);
}
- JavaBeanModel beanModel = JavaBeanModelFactory.getJavaBeanModel(clazz);
+ JavaBeanModel beanModel = JavaBeanModelFactory.getJavaBeanModelWithLazyLoad(clazz);
PropertySelectionDialog dialog = new PropertySelectionDialog(shell, project, beanModel);
if (dialog.open() == Dialog.OK) {
JavaBeanModel pd = (JavaBeanModel) dialog.getCurrentSelection();
Modified: trunk/smooks/plugins/org.jboss.tools.smooks.ui/src/org/jboss/tools/smooks/configuration/editors/uitls/JavaPropertiesProposalProvider.java
===================================================================
--- trunk/smooks/plugins/org.jboss.tools.smooks.ui/src/org/jboss/tools/smooks/configuration/editors/uitls/JavaPropertiesProposalProvider.java 2009-06-18 04:49:01 UTC (rev 16023)
+++ trunk/smooks/plugins/org.jboss.tools.smooks.ui/src/org/jboss/tools/smooks/configuration/editors/uitls/JavaPropertiesProposalProvider.java 2009-06-18 07:58:29 UTC (rev 16024)
@@ -48,7 +48,7 @@
} else {
clazz = classLoader.loadClass(className);
}
- beanModel = JavaBeanModelFactory.getJavaBeanModel(clazz);
+ beanModel = JavaBeanModelFactory.getJavaBeanModelWithLazyLoad(clazz);
}
} catch (JavaModelException e) {
} catch (ClassNotFoundException e) {
15 years, 6 months
JBoss Tools SVN: r16023 - workspace/Denny/bpel/bpel-plugins.
by jbosstools-commits@lists.jboss.org
Author: dennyxu
Date: 2009-06-18 00:49:01 -0400 (Thu, 18 Jun 2009)
New Revision: 16023
Modified:
workspace/Denny/bpel/bpel-plugins/org.eclipse.bpel.apache.ode.deploy.model_0.4.0.jar
workspace/Denny/bpel/bpel-plugins/org.eclipse.bpel.apache.ode.deploy.ui_0.4.0.jar
workspace/Denny/bpel/bpel-plugins/org.eclipse.bpel.apache.ode.runtime_0.4.0.jar
workspace/Denny/bpel/bpel-plugins/org.eclipse.bpel.common.model_0.4.0.jar
workspace/Denny/bpel/bpel-plugins/org.eclipse.bpel.common.ui_0.4.0.jar
workspace/Denny/bpel/bpel-plugins/org.eclipse.bpel.model_0.4.0.jar
workspace/Denny/bpel/bpel-plugins/org.eclipse.bpel.runtimes_0.4.0.jar
workspace/Denny/bpel/bpel-plugins/org.eclipse.bpel.ui_0.4.0.jar
workspace/Denny/bpel/bpel-plugins/org.eclipse.bpel.validator_0.4.0.jar
workspace/Denny/bpel/bpel-plugins/org.eclipse.bpel.wsil.model_0.4.0.jar
workspace/Denny/bpel/bpel-plugins/org.eclipse.bpel.xpath10_0.4.0.jar
Log:
Modified: workspace/Denny/bpel/bpel-plugins/org.eclipse.bpel.apache.ode.deploy.model_0.4.0.jar
===================================================================
(Binary files differ)
Modified: workspace/Denny/bpel/bpel-plugins/org.eclipse.bpel.apache.ode.deploy.ui_0.4.0.jar
===================================================================
(Binary files differ)
Modified: workspace/Denny/bpel/bpel-plugins/org.eclipse.bpel.apache.ode.runtime_0.4.0.jar
===================================================================
(Binary files differ)
Modified: workspace/Denny/bpel/bpel-plugins/org.eclipse.bpel.common.model_0.4.0.jar
===================================================================
(Binary files differ)
Modified: workspace/Denny/bpel/bpel-plugins/org.eclipse.bpel.common.ui_0.4.0.jar
===================================================================
(Binary files differ)
Modified: workspace/Denny/bpel/bpel-plugins/org.eclipse.bpel.model_0.4.0.jar
===================================================================
(Binary files differ)
Modified: workspace/Denny/bpel/bpel-plugins/org.eclipse.bpel.runtimes_0.4.0.jar
===================================================================
(Binary files differ)
Modified: workspace/Denny/bpel/bpel-plugins/org.eclipse.bpel.ui_0.4.0.jar
===================================================================
(Binary files differ)
Modified: workspace/Denny/bpel/bpel-plugins/org.eclipse.bpel.validator_0.4.0.jar
===================================================================
(Binary files differ)
Modified: workspace/Denny/bpel/bpel-plugins/org.eclipse.bpel.wsil.model_0.4.0.jar
===================================================================
(Binary files differ)
Modified: workspace/Denny/bpel/bpel-plugins/org.eclipse.bpel.xpath10_0.4.0.jar
===================================================================
(Binary files differ)
15 years, 6 months