Update of 
/cvsroot/xdoclet-plugins/xdoclet-plugins/testapp-ejb/src/main/java/org/xdoclet/testapp/ejb/interfaces
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv27740

Modified Files:
        AccountLocal.java AccountRemote.java Dummy.java 
        NoNumberException.java 
Added Files:
        AccountLocalHome.java AccountRemoteHome.java 
        TransferLocal.java TransferLocalHome.java TransferRemote.java 
        TransferRemoteHome.java 
Log Message:
no message

Index: Dummy.java
===================================================================
RCS file: 
/cvsroot/xdoclet-plugins/xdoclet-plugins/testapp-ejb/src/main/java/org/xdoclet/testapp/ejb/interfaces/Dummy.java,v
retrieving revision 1.1
retrieving revision 1.2
diff -C2 -d -r1.1 -r1.2
*** Dummy.java  13 Sep 2005 02:22:33 -0000      1.1
--- Dummy.java  6 Oct 2005 13:49:58 -0000       1.2
***************
*** 1,12 ****
! /*
!  * Copyright (c) 2005
!  * XDoclet Team
!  * All rights reserved.
!  */
! package org.xdoclet.testapp.ejb.interfaces;
! 
! /**
!  * @author Diogo Quintela
!  */
! public interface Dummy {
  }
\ No newline at end of file
--- 1,14 ----
! /*
!  * Copyright (c) 2005
!  * XDoclet Team
!  * All rights reserved.
!  */
! package org.xdoclet.testapp.ejb.interfaces;
! 
! /**
!  * @author Diogo Quintela
!  * @version $Revision$
!  */
! public interface Dummy {
!     // empty
  }
\ No newline at end of file

--- NEW FILE: TransferRemote.java ---
/*
 * Copyright (c) 2005
 * XDoclet Team
 * All rights reserved.
 */
package org.xdoclet.testapp.ejb.interfaces;

/**
 * This class would normally be generated by XDoclet, but we keep it in the 
codebase only to ensure that
 * the testapp can compile without XDoclet.
 * This source is also used by the xdoclet-ejb plugin to compare the generated 
output.
 *
 * @author Diogo Quintela
 * @version $Revision: 1.1 $
 */
public interface TransferRemote extends javax.ejb.EJBObject {
    // empty
}
--- NEW FILE: TransferLocal.java ---
/*
 * Copyright (c) 2005
 * XDoclet Team
 * All rights reserved.
 */
package org.xdoclet.testapp.ejb.interfaces;

/**
 * This class would normally be generated by XDoclet, but we keep it in the 
codebase only to ensure that the
 * testapp can compile without XDoclet.
 * This source is also used by the xdoclet-ejb plugin to compare the generated 
output.
 *
 * @author Diogo Quintela
 */
public interface TransferLocal extends javax.ejb.EJBLocalObject {
    // empty for now
}
--- NEW FILE: AccountLocalHome.java ---
/*
 * Copyright (c) 2005
 * XDoclet Team
 * All rights reserved.
 */
package org.xdoclet.testapp.ejb.interfaces;

/**
 * This class would normally be generated by XDoclet, but we keep it in the 
codebase only to ensure that the
 * testapp can compile without XDoclet.
 * This source is also used by the xdoclet-ejb plugin to compare the generated 
output.
 *
 * @author Diogo Quintela
 * @version $Revision: 1.1 $
 */
public interface AccountLocalHome
extends javax.ejb.EJBLocalHome {
    public static final String COMP_NAME="java:comp/env/ejb/AccountLocal";
    public static final String JNDI_NAME="AccountLocal";

    org.xdoclet.testapp.ejb.interfaces.AccountLocal create(java.lang.String pk) 
throws javax.ejb.CreateException;
    org.xdoclet.testapp.ejb.interfaces.AccountLocal 
findAccountWithBiggestStatement() throws javax.ejb.FinderException;
    java.util.Collection findOther(java.lang.String param1, java.lang.Integer 
param2) throws javax.ejb.FinderException;
    org.xdoclet.testapp.ejb.interfaces.AccountLocal findWithHighestBalance() 
throws javax.ejb.FinderException;
    org.xdoclet.testapp.ejb.interfaces.AccountLocal 
findByPrimaryKey(java.lang.String pk) throws javax.ejb.FinderException;
}
--- NEW FILE: AccountRemoteHome.java ---
/*
 * Copyright (c) 2005
 * XDoclet Team
 * All rights reserved.
 */
package org.xdoclet.testapp.ejb.interfaces;

/**
 * This class would normally be generated by XDoclet, but we keep it in the 
codebase only to ensure that
 * the testapp can compile without XDoclet.
 * This source is also used by the xdoclet-ejb plugin to compare the generated 
output.
 *
 * @author Diogo Quintela
 * @version $Revision: 1.1 $
 */
public interface AccountRemoteHome
extends javax.ejb.EJBHome {
    public static final String COMP_NAME="java:comp/env/ejb/AccountRemote";
    public static final String JNDI_NAME="AccountRemote";
    
    org.xdoclet.testapp.ejb.interfaces.AccountRemote create(java.lang.String 
pk) throws javax.ejb.CreateException, java.rmi.RemoteException;
    org.xdoclet.testapp.ejb.interfaces.AccountRemote 
findAccountWithBiggestStatement() throws javax.ejb.FinderException, 
java.rmi.RemoteException;
    java.util.Collection findAll(int[] _arg0) throws javax.ejb.FinderException, 
java.rmi.RemoteException;
    java.util.Collection findOther(java.lang.String param1, java.lang.Integer 
param2) throws javax.ejb.FinderException, java.rmi.RemoteException;
    org.xdoclet.testapp.ejb.interfaces.AccountRemote findWithHighestBalance() 
throws javax.ejb.FinderException, java.rmi.RemoteException;
    org.xdoclet.testapp.ejb.interfaces.AccountRemote 
findByPrimaryKey(java.lang.String pk) throws javax.ejb.FinderException, 
java.rmi.RemoteException;
}
Index: AccountLocal.java
===================================================================
RCS file: 
/cvsroot/xdoclet-plugins/xdoclet-plugins/testapp-ejb/src/main/java/org/xdoclet/testapp/ejb/interfaces/AccountLocal.java,v
retrieving revision 1.8
retrieving revision 1.9
diff -C2 -d -r1.8 -r1.9
*** AccountLocal.java   6 Sep 2005 01:49:59 -0000       1.8
--- AccountLocal.java   6 Oct 2005 13:49:58 -0000       1.9
***************
*** 1,17 ****
! package org.xdoclet.testapp.ejb.interfaces;
! 
! 
! /**
!  * This class would normally be generated by XDoclet, but
!  * we keep it in the codebase only to ensure that the testapp
!  * can compile without XDoclet. This source is also used
!  * by the xdoclet-ejb plugin to compare the generated output.
!  *
!  * @author Aslak Hellesøy
!  * @version $Revision$
!  */
! public interface AccountLocal extends javax.ejb.EJBLocalObject {
!     java.util.Collection getOwners(int ownershipType);
!     java.lang.String getNumber() throws 
org.xdoclet.testapp.ejb.interfaces.NoNumberException;
!     java.lang.String getType();
! }
--- 1,20 ----
! /*
!  * Copyright (c) 2005
!  * XDoclet Team
!  * All rights reserved.
!  */
! package org.xdoclet.testapp.ejb.interfaces;
! 
! /**
!  * This class would normally be generated by XDoclet, but we keep it in the 
codebase only to ensure that the
!  * testapp can compile without XDoclet.
!  * This source is also used by the xdoclet-ejb plugin to compare the 
generated output.
!  *
!  * @author Aslak Hellesøy
!  * @version $Revision$
!  */
! public interface AccountLocal extends javax.ejb.EJBLocalObject {
!     java.util.Collection getOwners(int ownershipType);
!     java.lang.String getNumber() throws 
org.xdoclet.testapp.ejb.interfaces.NoNumberException;
!     java.lang.String getType();
! }
\ No newline at end of file

Index: NoNumberException.java
===================================================================
RCS file: 
/cvsroot/xdoclet-plugins/xdoclet-plugins/testapp-ejb/src/main/java/org/xdoclet/testapp/ejb/interfaces/NoNumberException.java,v
retrieving revision 1.3
retrieving revision 1.4
diff -C2 -d -r1.3 -r1.4
*** NoNumberException.java      5 Dec 2003 01:56:29 -0000       1.3
--- NoNumberException.java      6 Oct 2005 13:49:58 -0000       1.4
***************
*** 1,9 ****
! package org.xdoclet.testapp.ejb.interfaces;
! 
! 
! /**
!  * @author Aslak Hellesøy
!  * @version $Revision$
!  */
! public class NoNumberException extends Exception {
! }
--- 1,14 ----
! /*
!  * Copyright (c) 2005
!  * XDoclet Team
!  * All rights reserved.
!  */
! package org.xdoclet.testapp.ejb.interfaces;
! 
! /**
!  * @author Aslak Hellesøy
!  * @version $Revision$
!  */
! public class NoNumberException extends Exception {
!     // empty
! }
\ No newline at end of file

Index: AccountRemote.java
===================================================================
RCS file: 
/cvsroot/xdoclet-plugins/xdoclet-plugins/testapp-ejb/src/main/java/org/xdoclet/testapp/ejb/interfaces/AccountRemote.java,v
retrieving revision 1.9
retrieving revision 1.10
diff -C2 -d -r1.9 -r1.10
*** AccountRemote.java  13 Sep 2005 02:22:33 -0000      1.9
--- AccountRemote.java  6 Oct 2005 13:49:58 -0000       1.10
***************
*** 1,18 ****
! package org.xdoclet.testapp.ejb.interfaces;
! 
! 
! /**
!  * This class would normally be generated by XDoclet, but
!  * we keep it in the codebase only to ensure that the testapp
!  * can compile without XDoclet. This source is also used
!  * by the xdoclet-ejb plugin to compare the generated output.
!  *
!  * @author Aslak Hellesøy
!  * @version $Revision$
!  */
! public interface AccountRemote extends 
org.xdoclet.testapp.ejb.interfaces.Dummy, javax.ejb.EJBObject {
!     java.util.Collection getOwners(int ownershipType) throws 
java.rmi.RemoteException;
!     java.lang.String getNumber() throws 
org.xdoclet.testapp.ejb.interfaces.NoNumberException, java.rmi.RemoteException;
!     java.lang.String getType() throws java.rmi.RemoteException;
! //    java.lang.String getType1() throws java.rmi.RemoteException;
! }
--- 1,21 ----
! /*
!  * Copyright (c) 2005
!  * XDoclet Team
!  * All rights reserved.
!  */
! package org.xdoclet.testapp.ejb.interfaces;
! 
! /**
!  * This class would normally be generated by XDoclet, but we keep it in the 
codebase only to ensure that
!  * the testapp can compile without XDoclet.
!  * This source is also used by the xdoclet-ejb plugin to compare the 
generated output.
!  *
!  * @author Aslak Hellesøy
!  * @author Diogo Quintela
!  * @version $Revision$
!  */
! public interface AccountRemote extends 
org.xdoclet.testapp.ejb.interfaces.Dummy, javax.ejb.EJBObject {
!     java.util.Collection getOwners(int ownershipType) throws 
java.rmi.RemoteException;
!     java.lang.String getNumber() throws 
org.xdoclet.testapp.ejb.interfaces.NoNumberException, java.rmi.RemoteException;
!     java.lang.String getType() throws java.rmi.RemoteException;
! }
\ No newline at end of file

--- NEW FILE: TransferRemoteHome.java ---
/*
 * Copyright (c) 2005
 * XDoclet Team
 * All rights reserved.
 */
package org.xdoclet.testapp.ejb.interfaces;

/**
 * This class would normally be generated by XDoclet, but we keep it in the 
codebase only to ensure that
 * the testapp can compile without XDoclet.
 * This source is also used by the xdoclet-ejb plugin to compare the generated 
output.
 *
 * @author Diogo Quintela
 * @version $Revision: 1.1 $
 */
public interface TransferRemoteHome
extends javax.ejb.EJBHome {
    public static final String COMP_NAME="java:comp/env/ejb/TransferRemote";
    public static final String JNDI_NAME="TransferRemote";

    org.xdoclet.testapp.ejb.interfaces.TransferRemote create() throws 
javax.ejb.CreateException, java.rmi.RemoteException;
    void foo() throws java.rmi.RemoteException;
}
--- NEW FILE: TransferLocalHome.java ---
/*
 * Copyright (c) 2005
 * XDoclet Team
 * All rights reserved.
 */
package org.xdoclet.testapp.ejb.interfaces;

/**
 * This class would normally be generated by XDoclet, but we keep it in the 
codebase only to ensure that
 * the testapp can compile without XDoclet.
 * This source is also used by the xdoclet-ejb plugin to compare the generated 
output.
 *
 * @author Diogo Quintela
 * @version $Revision: 1.1 $
 */
public interface TransferLocalHome extends javax.ejb.EJBLocalHome {
    public static final String COMP_NAME = "java:comp/env/ejb/TransferLocal";
    public static final String JNDI_NAME = "TransferLocal";
    
    org.xdoclet.testapp.ejb.interfaces.TransferLocal create() throws 
javax.ejb.CreateException;
    void otherFoo();
}


-------------------------------------------------------
This SF.Net email is sponsored by:
Power Architecture Resource Center: Free content, downloads, discussions,
and more. http://solutions.newsforge.com/ibmarch.tmpl
_______________________________________________
xdoclet-plugins-commits mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/xdoclet-plugins-commits

Reply via email to