User: vharcq  
  Date: 02/03/02 02:50:28

  Modified:    core/test/src/xdoclet/retest/bean/ejb/ejb SimpleSFBean.java
  Log:
  Improvement of regression unit test
  
  Revision  Changes    Path
  1.2       +14 -11    
xdoclet/core/test/src/xdoclet/retest/bean/ejb/ejb/SimpleSFBean.java
  
  Index: SimpleSFBean.java
  ===================================================================
  RCS file: 
/cvsroot/xdoclet/xdoclet/core/test/src/xdoclet/retest/bean/ejb/ejb/SimpleSFBean.java,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -w -r1.1 -r1.2
  --- SimpleSFBean.java 25 Feb 2002 17:40:44 -0000      1.1
  +++ SimpleSFBean.java 2 Mar 2002 10:50:28 -0000       1.2
  @@ -1,9 +1,10 @@
   /*
  -* $Id: SimpleSFBean.java,v 1.1 2002/02/25 17:40:44 vharcq Exp $
  +* $Id: SimpleSFBean.java,v 1.2 2002/03/02 10:50:28 vharcq Exp $
   */
   package xdoclet.retest.bean.ejb.ejb;
   
   import javax.ejb.SessionBean;
  +import javax.ejb.CreateException;
   
   /**
    * @ejb:bean type="Stateful" name="simple/SimpleSF" view-type="both"
  @@ -182,62 +183,64 @@
       /**
        * @ejb:create-method
        */
  -    public void ejbCreate(){
  +    public void ejbCreate() throws CreateException
  +    {
       }
   
       /**
        * @ejb:create-method
        */
  -    public void ejbCreate(int a){
  +    public void ejbCreate(int a) throws CreateException
  +    {
       }
   
       /**
        * @ejb:create-method
        */
  -    public void ejbCreate(int[] a){
  +    public void ejbCreate(int[] a) throws CreateException{
       }
   
       /**
        * @ejb:create-method
        */
  -    public void ejbCreate(String a){
  +    public void ejbCreate(String a) throws CreateException{
       }
   
       /**
        * @ejb:create-method
        */
  -    public void ejbCreate(String[] a){
  +    public void ejbCreate(String[] a) throws CreateException{
       }
   
   
       /**
        * @ejb:create-method
        */
  -    public void ejbCreateBlaBla(){
  +    public void ejbCreateBlaBla() throws CreateException{
       }
   
       /**
        * @ejb:create-method
        */
  -    public void ejbCreateBlaBla(int a){
  +    public void ejbCreateBlaBla(int a) throws CreateException{
       }
   
       /**
        * @ejb:create-method
        */
  -    public void ejbCreateBlaBla(int[] a){
  +    public void ejbCreateBlaBla(int[] a) throws CreateException{
       }
   
       /**
        * @ejb:create-method
        */
  -    public void ejbCreateBlaBla(String a){
  +    public void ejbCreateBlaBla(String a) throws CreateException{
       }
   
       /**
        * @ejb:create-method
        */
  -    public void ejbCreateBlaBla(String[] a){
  +    public void ejbCreateBlaBla(String[] a) throws CreateException{
       }
   
   
  
  
  

_______________________________________________
Xdoclet-devel mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/xdoclet-devel

Reply via email to