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-serv8776/src/main/java/org/xdoclet/testapp/ejb/interfaces
Modified Files:
AccountLocalHome.java AccountRemoteHome.java Dummy.java
TransferLocalHome.java TransferRemoteHome.java
Log Message:
fixing eol issues ?
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.2
retrieving revision 1.3
diff -C2 -d -r1.2 -r1.3
*** Dummy.java 6 Oct 2005 13:49:58 -0000 1.2
--- Dummy.java 24 Jan 2006 20:46:35 -0000 1.3
***************
*** 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
--- 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
Index: AccountLocalHome.java
===================================================================
RCS file:
/cvsroot/xdoclet-plugins/xdoclet-plugins/testapp-ejb/src/main/java/org/xdoclet/testapp/ejb/interfaces/AccountLocalHome.java,v
retrieving revision 1.1
retrieving revision 1.2
diff -C2 -d -r1.1 -r1.2
*** AccountLocalHome.java 6 Oct 2005 13:49:58 -0000 1.1
--- AccountLocalHome.java 24 Jan 2006 20:46:35 -0000 1.2
***************
*** 1,26 ****
! /*
! * 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$
! */
! 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;
}
\ No newline at end of file
--- 1,26 ----
! /*
! * 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$
! */
! 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;
}
\ No newline at end of file
Index: TransferRemoteHome.java
===================================================================
RCS file:
/cvsroot/xdoclet-plugins/xdoclet-plugins/testapp-ejb/src/main/java/org/xdoclet/testapp/ejb/interfaces/TransferRemoteHome.java,v
retrieving revision 1.1
retrieving revision 1.2
diff -C2 -d -r1.1 -r1.2
*** TransferRemoteHome.java 6 Oct 2005 13:49:58 -0000 1.1
--- TransferRemoteHome.java 24 Jan 2006 20:46:35 -0000 1.2
***************
*** 1,23 ****
! /*
! * 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$
! */
! 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;
}
\ No newline at end of file
--- 1,23 ----
! /*
! * 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$
! */
! 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;
}
\ No newline at end of file
Index: TransferLocalHome.java
===================================================================
RCS file:
/cvsroot/xdoclet-plugins/xdoclet-plugins/testapp-ejb/src/main/java/org/xdoclet/testapp/ejb/interfaces/TransferLocalHome.java,v
retrieving revision 1.1
retrieving revision 1.2
diff -C2 -d -r1.1 -r1.2
*** TransferLocalHome.java 6 Oct 2005 13:49:58 -0000 1.1
--- TransferLocalHome.java 24 Jan 2006 20:46:35 -0000 1.2
***************
*** 1,22 ****
! /*
! * 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$
! */
! 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();
}
\ No newline at end of file
--- 1,22 ----
! /*
! * 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$
! */
! 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();
}
\ No newline at end of file
Index: AccountRemoteHome.java
===================================================================
RCS file:
/cvsroot/xdoclet-plugins/xdoclet-plugins/testapp-ejb/src/main/java/org/xdoclet/testapp/ejb/interfaces/AccountRemoteHome.java,v
retrieving revision 1.1
retrieving revision 1.2
diff -C2 -d -r1.1 -r1.2
*** AccountRemoteHome.java 6 Oct 2005 13:49:58 -0000 1.1
--- AccountRemoteHome.java 24 Jan 2006 20:46:35 -0000 1.2
***************
*** 1,27 ****
! /*
! * 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$
! */
! 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;
}
\ No newline at end of file
--- 1,27 ----
! /*
! * 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$
! */
! 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;
}
\ No newline at end of file
-------------------------------------------------------
This SF.net email is sponsored by: Splunk Inc. Do you grep through log files
for problems? Stop! Download the new AJAX search engine that makes
searching your log files as easy as surfing the web. DOWNLOAD SPLUNK!
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=103432&bid=230486&dat=121642
_______________________________________________
xdoclet-plugins-commits mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/xdoclet-plugins-commits