Author: bbrodt
Date: 2010-04-30 10:14:04 -0400 (Fri, 30 Apr 2010)
New Revision: 21828
Modified:
trunk/bpel/plugins/org.eclipse.bpel.apache.ode.deploy.ui/src/org/eclipse/bpel/apache/ode/deploy/ui/editors/ODEDeployMultiPageEditor.java
Log:
https://jira.jboss.org/jira/browse/JBIDE-6230
added missing links to JIRA in comments as per my own recommendation ;)
Modified:
trunk/bpel/plugins/org.eclipse.bpel.apache.ode.deploy.ui/src/org/eclipse/bpel/apache/ode/deploy/ui/editors/ODEDeployMultiPageEditor.java
===================================================================
---
trunk/bpel/plugins/org.eclipse.bpel.apache.ode.deploy.ui/src/org/eclipse/bpel/apache/ode/deploy/ui/editors/ODEDeployMultiPageEditor.java 2010-04-30
12:51:48 UTC (rev 21827)
+++
trunk/bpel/plugins/org.eclipse.bpel.apache.ode.deploy.ui/src/org/eclipse/bpel/apache/ode/deploy/ui/editors/ODEDeployMultiPageEditor.java 2010-04-30
14:14:04 UTC (rev 21828)
@@ -61,6 +61,7 @@
// Display this in title if no BPEL process files are found in current directory
private final static String NO_PROCESSES_FOUND = " *** No Processes Found ***
";
private boolean readOnly = false;
+ //
https://jira.jboss.org/jira/browse/JBIDE-6230
// if BPEL processes were added or deleted, DD model is not in sync and needs to be
saved
private boolean modelInSync = true;
protected TDeployment deployDescriptor = null;
@@ -263,6 +264,9 @@
return true;
}
});
+ //
https://jira.jboss.org/jira/browse/JBIDE-6230
+ // figure out which BPEL processes are missing from the workspace
+ // and remove them from the DD model
Vector<ProcessType> processesToDelete = new Vector<ProcessType>();
for(ProcessType pt : deployDescriptor.getProcess())
{