Skip to main content

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [List Home]
[wtp-jst-dev] Fw: [jst-cvs-commit] jst/components/ejb/plugins/org.eclipse.jst.j2ee.ejb.annotations.ui/src/org/eclipse/jst/j2ee/ejb/annotation/ui/internal/wizards AddMessageDrivenBeanWizardPage.java


Recall that all commits must have a Bug number now.

Arthur Ryman,
Rational Desktop Tools Development

phone: +1-905-413-3077, TL 969-3077
assistant: +1-905-413-2411, TL 969-2411
fax: +1-905-413-4920, TL 969-4920
mobile: +1-416-939-5063, text: 4169395063@xxxxxxx
intranet: http://labweb.torolab.ibm.com/DRY6/

----- Forwarded by Arthur Ryman/Toronto/IBM on 07/06/2005 06:01 PM -----
Eclipse CVS Genie <genie@xxxxxxxxxxx>
Sent by: jst-cvs-commit-bounces@xxxxxxxxxxx

07/06/2005 03:43 PM

Please respond to
CVS individual commit notification list

To
jst-cvs-commit@xxxxxxxxxxx
cc
Subject
[jst-cvs-commit]         jst/components/ejb/plugins/org.eclipse.jst.j2ee.ejb.annotations.ui/src/org/eclipse/jst/j2ee/ejb/annotation/ui/internal/wizards        AddMessageDrivenBeanWizardPage.java





Update of /home/webtools/jst/components/ejb/plugins/org.eclipse.jst.j2ee.ejb.annotations.ui/src/org/eclipse/jst/j2ee/ejb/annotation/ui/internal/wizards
In directory node1:/tmp/cvs-serv27491/src/org/eclipse/jst/j2ee/ejb/annotation/ui/internal/wizards

Modified Files:
                AddMessageDrivenBeanWizardPage.java
Log Message:
Fixed a bug inializing the selected destination and transaction

Index: AddMessageDrivenBeanWizardPage.java
===================================================================
RCS file: /home/webtools/jst/components/ejb/plugins/org.eclipse.jst.j2ee.ejb.annotations.ui/src/org/eclipse/jst/j2ee/ejb/annotation/ui/internal/wizards/AddMessageDrivenBeanWizardPage.java,v
retrieving revision 1.3
retrieving revision 1.4
diff -C2 -d -r1.3 -r1.4
*** AddMessageDrivenBeanWizardPage.java                 22 Jun 2005 18:58:37 -0000                 1.3
--- AddMessageDrivenBeanWizardPage.java                 6 Jul 2005 19:43:38 -0000                 1.4
***************
*** 166,169 ****
--- 166,170 ----
                                   synchHelper.synchCombo(destinationButton, MessageDrivenBeanDataModel.DESTINATIONTYPE, null);
                                   destinationButton.select(0);
+                                   model.setProperty(MessageDrivenBeanDataModel.DESTINATIONTYPE,DestinationType.QUEUE_LITERAL.getName());
 
                  }
***************
*** 181,184 ****
--- 182,186 ----
                                   synchHelper.synchCombo(transactionButton, EnterpriseBeanClassDataModel.TRANSACTIONTYPE, null);
                                   transactionButton.select(0);
+                                   model.setProperty(MessageDrivenBeanDataModel.TRANSACTIONTYPE,TransactionType.CONTAINER_LITERAL.getName());
 
                  }

_______________________________________________
jst-cvs-commit mailing list
jst-cvs-commit@xxxxxxxxxxx
https://dev.eclipse.org/mailman/listinfo/jst-cvs-commit

Back to the top