Wonderful...
this should really put us on top of sourceforge at least for the week :)
ok I did add the updated templates (class.java and interface.java) so do
check them out most notably
1- Use the right @author tag to support automatic generation of HTML links
with mail
2- PLEASE UPDATE THE LOG FOR CHANGES **INSIDE** THE CODE... (IMPORTANT AS WE
GROW MASSIVE, CVS JUST DOESN"T CUT IT)
3- You will also notice a BAN ON TABS! DO NOT use tabs to indent your code
it really screws up the look. Apache and Linux already enforce the
tabs=2spaces rules, so please configure your IDES to replace tabs by 2spaces
or go by hand in your code,
4- USE EXPLICIT IMPORTS, I still see some wildcard imports here and there.
We will start taking measure for those of you that don't enforce the
explicit imports rules
5- minor stuff check it out
regards
marcf
|-----Original Message-----
|From: [EMAIL PROTECTED]
|[mailto:[EMAIL PROTECTED]]On Behalf Of
|[EMAIL PROTECTED]
|Sent: Monday, June 18, 2001 4:01 PM
|To: [EMAIL PROTECTED]
|Subject: [JBoss-dev] CVS update: jboss/src/main/org/jboss/util
|CachePolicy.java ClassPathExtension.java ClassPathExtensionMBean.java
|Executable.java Executor.java ExecutorMBean.java FastKey.java Heap.java
|Info.java InfoMBean.java LRUCachePolicy.java MBeanProxy.jav
|
|
| User: mnf999
| Date: 01/06/18 13:01:29
|
| Modified: src/main/org/jboss/util CachePolicy.java
| ClassPathExtension.java
| ClassPathExtensionMBean.java Executable.java
| Executor.java ExecutorMBean.java FastKey.java
| Heap.java Info.java InfoMBean.java
| LRUCachePolicy.java MBeanProxy.java
| Schedulable.java Scheduler.java SchedulerMBean.java
| Semaphore.java Service.java ServiceControl.java
| ServiceControlMBean.java ServiceFactory.java
| ServiceMBean.java ServiceMBeanSupport.java
| Shutdown.java ShutdownMBean.java Sync.java
| SystemProperties.java SystemPropertiesMBean.java
| TimedCachePolicy.java TimerQueue.java
| TimerTask.java WaitSemaphore.java WaitSync.java
| WorkerQueue.java XmlHelper.java
| Log:
| Updating the new names and author tags to reflect the new coding
|guidelines
|
| Revision Changes Path
| 1.3 +2 -2 jboss/src/main/org/jboss/util/CachePolicy.java
|
| Index: CachePolicy.java
| ===================================================================
| RCS file: /cvsroot/jboss/jboss/src/main/org/jboss/util/CachePolicy.java,v
| retrieving revision 1.2
| retrieving revision 1.3
| diff -u -r1.2 -r1.3
| --- CachePolicy.java 2000/12/07 15:45:19 1.2
| +++ CachePolicy.java 2001/06/18 20:01:28 1.3
| @@ -11,8 +11,8 @@
| * Implementation classes can implement a LRU policy, a random one,
| * a MRU one, or any other suitable policy.
| *
| - * @author Simone Bordet ([EMAIL PROTECTED])
| - * @version $Revision: 1.2 $
| + * @author <a href="mailto:[EMAIL PROTECTED]">Simone Bordet</a>
| + * @version $Revision: 1.3 $
| */
| public interface CachePolicy extends Service
| {
|
|
|
| 1.11 +1 -1
|jboss/src/main/org/jboss/util/ClassPathExtension.java
|
| Index: ClassPathExtension.java
| ===================================================================
| RCS file:
|/cvsroot/jboss/jboss/src/main/org/jboss/util/ClassPathExtension.java,v
| retrieving revision 1.10
| retrieving revision 1.11
| diff -u -r1.10 -r1.11
| --- ClassPathExtension.java 2001/01/16 21:23:14 1.10
| +++ ClassPathExtension.java 2001/06/18 20:01:28 1.11
| @@ -19,8 +19,8 @@
| * Add URL's to the MLet classloader
| *
| * @see <related>
| - * @author Rickard �berg ([EMAIL PROTECTED])
| - * @version $Revision: 1.10 $
| + * @author <a href="mailto:[EMAIL PROTECTED]">Rickard
|�berg</a>.
| + * @version $Revision: 1.11 $
| */
| public class ClassPathExtension
| implements ClassPathExtensionMBean, MBeanRegistration
|
|
|
| 1.3 +2 -2
|jboss/src/main/org/jboss/util/ClassPathExtensionMBean.java
|
| Index: ClassPathExtensionMBean.java
| ===================================================================
| RCS file:
|/cvsroot/jboss/jboss/src/main/org/jboss/util/ClassPathExtensionMBean.java,v
| retrieving revision 1.2
| retrieving revision 1.3
| diff -u -r1.2 -r1.3
| --- ClassPathExtensionMBean.java 2000/12/07 15:45:19 1.2
| +++ ClassPathExtensionMBean.java 2001/06/18 20:01:28 1.3
| @@ -12,8 +12,8 @@
| * <description>
| *
| * @see <related>
| - * @author Rickard �berg ([EMAIL PROTECTED])
| - * @version $Revision: 1.2 $
| + * @author <a href="mailto:[EMAIL PROTECTED]">Rickard
|�berg</a>.
| + * @version $Revision: 1.3 $
| */
| public interface ClassPathExtensionMBean
| {
|
|
|
| 1.3 +2 -2 jboss/src/main/org/jboss/util/Executable.java
|
| Index: Executable.java
| ===================================================================
| RCS file: /cvsroot/jboss/jboss/src/main/org/jboss/util/Executable.java,v
| retrieving revision 1.2
| retrieving revision 1.3
| diff -u -r1.2 -r1.3
| --- Executable.java 2000/12/07 15:45:20 1.2
| +++ Executable.java 2001/06/18 20:01:28 1.3
| @@ -10,8 +10,8 @@
| * Interface for the execution of a task. <p>
| *
| * @see WorkerQueue
| - * @author Simone Bordet ([EMAIL PROTECTED])
| - * @version $Revision: 1.2 $
| + * @author <a href="mailto:[EMAIL PROTECTED]">Simone Bordet</a>
| + * @version $Revision: 1.3 $
| */
| public interface Executable
| {
|
|
|
| 1.4 +2 -2 jboss/src/main/org/jboss/util/Executor.java
|
| Index: Executor.java
| ===================================================================
| RCS file: /cvsroot/jboss/jboss/src/main/org/jboss/util/Executor.java,v
| retrieving revision 1.3
| retrieving revision 1.4
| diff -u -r1.3 -r1.4
| --- Executor.java 2000/12/07 18:16:13 1.3
| +++ Executor.java 2001/06/18 20:01:28 1.4
| @@ -19,8 +19,8 @@
| * <description>
| *
| * @see <related>
| - * @author Rickard �berg ([EMAIL PROTECTED])
| - * @version $Revision: 1.3 $
| + * @author <a href="mailto:[EMAIL PROTECTED]">Rickard
|�berg</a>.
| + * @version $Revision: 1.4 $
| */
| public class Executor
| implements ExecutorMBean, MBeanRegistration
|
|
|
| 1.3 +2 -2 jboss/src/main/org/jboss/util/ExecutorMBean.java
|
| Index: ExecutorMBean.java
| ===================================================================
| RCS file:
|/cvsroot/jboss/jboss/src/main/org/jboss/util/ExecutorMBean.java,v
| retrieving revision 1.2
| retrieving revision 1.3
| diff -u -r1.2 -r1.3
| --- ExecutorMBean.java 2000/12/07 15:45:20 1.2
| +++ ExecutorMBean.java 2001/06/18 20:01:28 1.3
| @@ -12,8 +12,8 @@
| * <description>
| *
| * @see <related>
| - * @author Rickard �berg ([EMAIL PROTECTED])
| - * @version $Revision: 1.2 $
| + * @author <a href="mailto:[EMAIL PROTECTED]">Rickard �berg</a>
| + * @version $Revision: 1.3 $
| */
| public interface ExecutorMBean
| {
|
|
|
| 1.9 +2 -2 jboss/src/main/org/jboss/util/FastKey.java
|
| Index: FastKey.java
| ===================================================================
| RCS file: /cvsroot/jboss/jboss/src/main/org/jboss/util/FastKey.java,v
| retrieving revision 1.8
| retrieving revision 1.9
| diff -u -r1.8 -r1.9
| --- FastKey.java 2000/12/07 15:45:20 1.8
| +++ FastKey.java 2001/06/18 20:01:28 1.9
| @@ -17,8 +17,8 @@
| * is over-written so that we never miss a hit in cache and
|have constant speed.
| *
| * @see org.jboss.ejb.plugins.NoPassivationInstanceCache.java
| -* @author <a href="[EMAIL PROTECTED]">Marc Fleury</a>
| -* @version $Revision: 1.8 $
| +* @author <a href="mailto:[EMAIL PROTECTED]">Marc Fleury</a>
| +* @version $Revision: 1.9 $
| */
| public class FastKey
| extends CacheKey
|
|
|
| 1.3 +2 -2 jboss/src/main/org/jboss/util/Heap.java
|
| Index: Heap.java
| ===================================================================
| RCS file: /cvsroot/jboss/jboss/src/main/org/jboss/util/Heap.java,v
| retrieving revision 1.2
| retrieving revision 1.3
| diff -u -r1.2 -r1.3
| --- Heap.java 2000/12/07 15:45:20 1.2
| +++ Heap.java 2001/06/18 20:01:28 1.3
| @@ -14,8 +14,8 @@
| * Elements of this data structure should either implement
|Comparable, or a
| * Comparator should be given as argument to the constructor.
| *
| - * @author Simone Bordet ([EMAIL PROTECTED])
| - * @version $Revision: 1.2 $
| + * @author <a href="mailto:[EMAIL PROTECTED]">Simone Bordet</a>
| + * @version $Revision: 1.3 $
| */
| public class Heap
| {
|
|
|
| 1.6 +3 -3 jboss/src/main/org/jboss/util/Info.java
|
| Index: Info.java
| ===================================================================
| RCS file: /cvsroot/jboss/jboss/src/main/org/jboss/util/Info.java,v
| retrieving revision 1.5
| retrieving revision 1.6
| diff -u -r1.5 -r1.6
| --- Info.java 2001/05/09 14:47:54 1.5
| +++ Info.java 2001/06/18 20:01:28 1.6
| @@ -19,9 +19,9 @@
| * <description>
| *
| * @see <related>
| - * @author Rickard �berg ([EMAIL PROTECTED])
| - * @author [EMAIL PROTECTED]
| - * @version $Revision: 1.5 $
| + * @author <a href="mailto:[EMAIL PROTECTED]">Rickard
|�berg</a>.
| + * @author <a
|href="mailto:[EMAIL PROTECTED]">Scott Stark</a>.
| + * @version $Revision: 1.6 $
| */
| public class Info
| implements InfoMBean, MBeanRegistration
|
|
|
| 1.3 +2 -2 jboss/src/main/org/jboss/util/InfoMBean.java
|
| Index: InfoMBean.java
| ===================================================================
| RCS file: /cvsroot/jboss/jboss/src/main/org/jboss/util/InfoMBean.java,v
| retrieving revision 1.2
| retrieving revision 1.3
| diff -u -r1.2 -r1.3
| --- InfoMBean.java 2000/12/07 15:45:20 1.2
| +++ InfoMBean.java 2001/06/18 20:01:28 1.3
| @@ -10,8 +10,8 @@
| * <description>
| *
| * @see <related>
| - * @author Rickard �berg ([EMAIL PROTECTED])
| - * @version $Revision: 1.2 $
| + * @author <a href="mailto:[EMAIL PROTECTED]">Rickard
|�berg</a>.
| + * @version $Revision: 1.3 $
| */
| public interface InfoMBean
| {
|
|
|
| 1.9 +2 -2 jboss/src/main/org/jboss/util/LRUCachePolicy.java
|
| Index: LRUCachePolicy.java
| ===================================================================
| RCS file:
|/cvsroot/jboss/jboss/src/main/org/jboss/util/LRUCachePolicy.java,v
| retrieving revision 1.8
| retrieving revision 1.9
| diff -u -r1.8 -r1.9
| --- LRUCachePolicy.java 2001/03/26 12:40:33 1.8
| +++ LRUCachePolicy.java 2001/06/18 20:01:28 1.9
| @@ -11,8 +11,8 @@
| /**
| * Implementation of a Least Recently Used cache policy.
| *
| - * @author Simone Bordet ([EMAIL PROTECTED])
| - * @version $Revision: 1.8 $
| + * @author <a href="mailto:[EMAIL PROTECTED]">Simone Bordet</a>
| + * @version $Revision: 1.9 $
| */
| public class LRUCachePolicy
| implements CachePolicy
|
|
|
| 1.5 +2 -2 jboss/src/main/org/jboss/util/MBeanProxy.java
|
| Index: MBeanProxy.java
| ===================================================================
| RCS file: /cvsroot/jboss/jboss/src/main/org/jboss/util/MBeanProxy.java,v
| retrieving revision 1.4
| retrieving revision 1.5
| diff -u -r1.4 -r1.5
| --- MBeanProxy.java 2000/12/07 15:45:20 1.4
| +++ MBeanProxy.java 2001/06/18 20:01:28 1.5
| @@ -21,8 +21,8 @@
| * <description>
| *
| * @see <related>
| - * @author Rickard �berg ([EMAIL PROTECTED])
| - * @version $Revision: 1.4 $
| + * @author <a href="mailto:[EMAIL PROTECTED]">Rickard
|�berg</a>.
| + * @version $Revision: 1.5 $
| */
| public class MBeanProxy
| implements InvocationHandler
|
|
|
| 1.3 +1 -1 jboss/src/main/org/jboss/util/Schedulable.java
|
| Index: Schedulable.java
| ===================================================================
| RCS file: /cvsroot/jboss/jboss/src/main/org/jboss/util/Schedulable.java,v
| retrieving revision 1.2
| retrieving revision 1.3
| diff -u -r1.2 -r1.3
| --- Schedulable.java 2001/06/11 06:32:31 1.2
| +++ Schedulable.java 2001/06/18 20:01:28 1.3
| @@ -13,7 +13,7 @@
| * allowing the client to create a Schedulable instance which
|is then run
| * by this service at given times.
| *
| - * @author Andreas Schaefer ([EMAIL PROTECTED])
| + * @author <a
|href="mailto:[EMAIL PROTECTED]">Andreas Schaefer</a>
| **/
| public interface Schedulable
| {
|
|
|
| 1.5 +1 -1 jboss/src/main/org/jboss/util/Scheduler.java
|
| Index: Scheduler.java
| ===================================================================
| RCS file: /cvsroot/jboss/jboss/src/main/org/jboss/util/Scheduler.java,v
| retrieving revision 1.4
| retrieving revision 1.5
| diff -u -r1.4 -r1.5
| --- Scheduler.java 2001/06/11 06:32:31 1.4
| +++ Scheduler.java 2001/06/18 20:01:28 1.5
| @@ -38,7 +38,7 @@
| * Scheduler Instance to allow clients to run this as a
| * scheduling service for any Schedulable instances.
| *
| - * @author Andreas Schaefer ([EMAIL PROTECTED])
| + * @author <a
|href="mailto:[EMAIL PROTECTED]">Andreas Schaefer</a>
| **/
| public class Scheduler
| extends ServiceMBeanSupport
|
|
|
| 1.3 +1 -1 jboss/src/main/org/jboss/util/SchedulerMBean.java
|
| Index: SchedulerMBean.java
| ===================================================================
| RCS file:
|/cvsroot/jboss/jboss/src/main/org/jboss/util/SchedulerMBean.java,v
| retrieving revision 1.2
| retrieving revision 1.3
| diff -u -r1.2 -r1.3
| --- SchedulerMBean.java 2001/06/11 06:32:31 1.2
| +++ SchedulerMBean.java 2001/06/18 20:01:28 1.3
| @@ -16,7 +16,7 @@
| * allowing the client to create a Schedulable instance which
|is then run
| * by this service at given times.
| *
| - * @author Andreas Schaefer ([EMAIL PROTECTED])
| + * @author <a
|href="mailto:[EMAIL PROTECTED]">Andreas Schaefer</a>
| **/
| public interface SchedulerMBean
| extends ServiceMBean
|
|
|
| 1.3 +2 -2 jboss/src/main/org/jboss/util/Semaphore.java
|
| Index: Semaphore.java
| ===================================================================
| RCS file: /cvsroot/jboss/jboss/src/main/org/jboss/util/Semaphore.java,v
| retrieving revision 1.2
| retrieving revision 1.3
| diff -u -r1.2 -r1.3
| --- Semaphore.java 2001/04/20 23:16:52 1.2
| +++ Semaphore.java 2001/06/18 20:01:28 1.3
| @@ -18,8 +18,8 @@
| * others. If the specified number of threads is 1, it acts as
|an exclusive semaphore
| * and can be used instead of synchronized blocks
| *
| - * @author Simone Bordet ([EMAIL PROTECTED])
| - * @version $Revision: 1.2 $
| + * @author <a href="mailto:[EMAIL PROTECTED]">Simone Bordet</a>
| + * @version $Revision: 1.3 $
| */
| public class Semaphore
| implements Sync
|
|
|
| 1.3 +2 -2 jboss/src/main/org/jboss/util/Service.java
|
| Index: Service.java
| ===================================================================
| RCS file: /cvsroot/jboss/jboss/src/main/org/jboss/util/Service.java,v
| retrieving revision 1.2
| retrieving revision 1.3
| diff -u -r1.2 -r1.3
| --- Service.java 2000/12/07 15:45:20 1.2
| +++ Service.java 2001/06/18 20:01:28 1.3
| @@ -10,8 +10,8 @@
| * <description>
| *
| * @see <related>
| - * @author Rickard �berg ([EMAIL PROTECTED])
| - * @version $Revision: 1.2 $
| + * @author <a href="mailto:[EMAIL PROTECTED]">Rickard
|�berg</a>.
| + * @version $Revision: 1.3 $
| */
| public interface Service
| {
|
|
|
| 1.10 +4 -4 jboss/src/main/org/jboss/util/ServiceControl.java
|
| Index: ServiceControl.java
| ===================================================================
| RCS file:
|/cvsroot/jboss/jboss/src/main/org/jboss/util/ServiceControl.java,v
| retrieving revision 1.9
| retrieving revision 1.10
| diff -u -r1.9 -r1.10
| --- ServiceControl.java 2001/04/13 19:06:59 1.9
| +++ ServiceControl.java 2001/06/18 20:01:28 1.10
| @@ -18,10 +18,10 @@
| /** ServiceControl manages the JBoss services lifecycle.
| *
| * @see org.jboss.util.Service
| - * @author Rickard �berg ([EMAIL PROTECTED])
| - * @author Hugo Pinto (mailto:[EMAIL PROTECTED])
| - * @author [EMAIL PROTECTED]
| - * @version $Revision: 1.9 $
| + * @author <a href="mailto:[EMAIL PROTECTED]">Rickard
|�berg</a>.
| + * @author <a href="mailto:[EMAIL PROTECTED]">Hugo Pinto</a>
| + * @author <a
|href="mailto:[EMAIL PROTECTED]">Scott Stark</a>.
| + * @version $Revision: 1.10 $
| */
| public class ServiceControl
| implements ServiceControlMBean, MBeanRegistration
|
|
|
| 1.3 +3 -3
|jboss/src/main/org/jboss/util/ServiceControlMBean.java
|
| Index: ServiceControlMBean.java
| ===================================================================
| RCS file:
|/cvsroot/jboss/jboss/src/main/org/jboss/util/ServiceControlMBean.java,v
| retrieving revision 1.2
| retrieving revision 1.3
| diff -u -r1.2 -r1.3
| --- ServiceControlMBean.java 2001/04/13 19:06:59 1.2
| +++ ServiceControlMBean.java 2001/06/18 20:01:28 1.3
| @@ -10,9 +10,9 @@
| manages the lifecycle of JBoss services.
|
| * @see org.jboss.util.Service
| - * @author Rickard �berg ([EMAIL PROTECTED])
| - * @author [EMAIL PROTECTED]
| - * @version $Revision: 1.2 $
| + * @author <a href="mailto:[EMAIL PROTECTED]">Rickard
|�berg</a>.
| + * @author <a
|href="mailto:[EMAIL PROTECTED]">Scott Stark</a>.
| + * @version $Revision: 1.3 $
| */
| public interface ServiceControlMBean
| extends Service
|
|
|
| 1.2 +2 -2 jboss/src/main/org/jboss/util/ServiceFactory.java
|
| Index: ServiceFactory.java
| ===================================================================
| RCS file:
|/cvsroot/jboss/jboss/src/main/org/jboss/util/ServiceFactory.java,v
| retrieving revision 1.1
| retrieving revision 1.2
| diff -u -r1.1 -r1.2
| --- ServiceFactory.java 2001/04/13 19:06:59 1.1
| +++ ServiceFactory.java 2001/06/18 20:01:28 1.2
| @@ -12,8 +12,8 @@
| /** The ServiceFactory interface is used to obtain a Service
| proxy instance for a named MBean.
|
| -@author [EMAIL PROTECTED]
| -@version $Revision: 1.1 $
| +@author <a href="mailto:[EMAIL PROTECTED]">Scott Stark</a>.
| +@version $Revision: 1.2 $
| */
| public interface ServiceFactory
| {
|
|
|
| 1.5 +3 -3 jboss/src/main/org/jboss/util/ServiceMBean.java
|
| Index: ServiceMBean.java
| ===================================================================
| RCS file:
|/cvsroot/jboss/jboss/src/main/org/jboss/util/ServiceMBean.java,v
| retrieving revision 1.4
| retrieving revision 1.5
| diff -u -r1.4 -r1.5
| --- ServiceMBean.java 2001/04/22 20:02:35 1.4
| +++ ServiceMBean.java 2001/06/18 20:01:28 1.5
| @@ -11,9 +11,9 @@
| @see org.jboss.util.Service
| @see org.jboss.util.ServiceMBeanSupport
|
| - * @author Rickard �berg ([EMAIL PROTECTED])
| - * @author [EMAIL PROTECTED]
| - * @version $Revision: 1.4 $
| + * @author <a href="mailto:[EMAIL PROTECTED]">Rickard
|�berg</a>.
| + * @author <a
|href="mailto:[EMAIL PROTECTED]">Scott Stark</a>.
| + * @version $Revision: 1.5 $
| */
| public interface ServiceMBean
| extends Service
|
|
|
| 1.14 +3 -3
|jboss/src/main/org/jboss/util/ServiceMBeanSupport.java
|
| Index: ServiceMBeanSupport.java
| ===================================================================
| RCS file:
|/cvsroot/jboss/jboss/src/main/org/jboss/util/ServiceMBeanSupport.java,v
| retrieving revision 1.13
| retrieving revision 1.14
| diff -u -r1.13 -r1.14
| --- ServiceMBeanSupport.java 2001/06/11 00:40:26 1.13
| +++ ServiceMBeanSupport.java 2001/06/18 20:01:28 1.14
| @@ -28,9 +28,9 @@
|
| @see org.jboss.util.ServiceMBean
|
| -@author Rickard �berg ([EMAIL PROTECTED])
| -@author [EMAIL PROTECTED]
| -@version $Revision: 1.13 $
| +<a href="mailto:[EMAIL PROTECTED]">Rickard �berg</a>
| +@author <a href="mailto:[EMAIL PROTECTED]">Scott Stark</a>.
| +@version $Revision: 1.14 $
| */
| public abstract class ServiceMBeanSupport
| extends NotificationBroadcasterSupport
|
|
|
| 1.3 +2 -2 jboss/src/main/org/jboss/util/Shutdown.java
|
| Index: Shutdown.java
| ===================================================================
| RCS file: /cvsroot/jboss/jboss/src/main/org/jboss/util/Shutdown.java,v
| retrieving revision 1.2
| retrieving revision 1.3
| diff -u -r1.2 -r1.3
| --- Shutdown.java 2000/12/07 18:16:14 1.2
| +++ Shutdown.java 2001/06/18 20:01:28 1.3
| @@ -18,8 +18,8 @@
| * <description>
| *
| * @see <related>
| - * @author Rickard �berg ([EMAIL PROTECTED])
| - * @version $Revision: 1.2 $
| + * @author <a href="mailto:[EMAIL PROTECTED]">Rickard
|�berg</a>.
| + * @version $Revision: 1.3 $
| */
| public class Shutdown
| implements MBeanRegistration, ShutdownMBean
|
|
|
| 1.2 +2 -2 jboss/src/main/org/jboss/util/ShutdownMBean.java
|
| Index: ShutdownMBean.java
| ===================================================================
| RCS file:
|/cvsroot/jboss/jboss/src/main/org/jboss/util/ShutdownMBean.java,v
| retrieving revision 1.1
| retrieving revision 1.2
| diff -u -r1.1 -r1.2
| --- ShutdownMBean.java 2000/12/07 15:48:14 1.1
| +++ ShutdownMBean.java 2001/06/18 20:01:28 1.2
| @@ -10,8 +10,8 @@
| * <description>
| *
| * @see <related>
| - * @author Rickard �berg ([EMAIL PROTECTED])
| - * @version $Revision: 1.1 $
| + * @author <a href="mailto:[EMAIL PROTECTED]">Rickard
|�berg</a>.
| + * @version $Revision: 1.2 $
| */
| public interface ShutdownMBean
| {
|
|
|
| 1.3 +2 -2 jboss/src/main/org/jboss/util/Sync.java
|
| Index: Sync.java
| ===================================================================
| RCS file: /cvsroot/jboss/jboss/src/main/org/jboss/util/Sync.java,v
| retrieving revision 1.2
| retrieving revision 1.3
| diff -u -r1.2 -r1.3
| --- Sync.java 2001/04/07 20:41:56 1.2
| +++ Sync.java 2001/06/18 20:01:28 1.3
| @@ -10,8 +10,8 @@
| * Interface that gives synchronization semantic to implementors
| *
| * @see Semaphore
| - * @author Simone Bordet ([EMAIL PROTECTED])
| - * @version $Revision: 1.2 $
| + * @author <a href="mailto:[EMAIL PROTECTED]">Simone Bordet</a>
| + * @version $Revision: 1.3 $
| */
| public interface Sync
| {
|
|
|
| 1.4 +2 -2 jboss/src/main/org/jboss/util/SystemProperties.java
|
| Index: SystemProperties.java
| ===================================================================
| RCS file:
|/cvsroot/jboss/jboss/src/main/org/jboss/util/SystemProperties.java,v
| retrieving revision 1.3
| retrieving revision 1.4
| diff -u -r1.3 -r1.4
| --- SystemProperties.java 2000/12/07 18:16:14 1.3
| +++ SystemProperties.java 2001/06/18 20:01:28 1.4
| @@ -18,8 +18,8 @@
| * <description>
| *
| * @see <related>
| - * @author Rickard �berg ([EMAIL PROTECTED])
| - * @version $Revision: 1.3 $
| + * @author <a href="mailto:[EMAIL PROTECTED]">Rickard
|�berg</a>.
| + * @version $Revision: 1.4 $
| */
| public class SystemProperties
| implements SystemPropertiesMBean, MBeanRegistration
|
|
|
| 1.3 +2 -2
|jboss/src/main/org/jboss/util/SystemPropertiesMBean.java
|
| Index: SystemPropertiesMBean.java
| ===================================================================
| RCS file:
|/cvsroot/jboss/jboss/src/main/org/jboss/util/SystemPropertiesMBean.java,v
| retrieving revision 1.2
| retrieving revision 1.3
| diff -u -r1.2 -r1.3
| --- SystemPropertiesMBean.java 2000/12/07 15:45:21 1.2
| +++ SystemPropertiesMBean.java 2001/06/18 20:01:28 1.3
| @@ -10,8 +10,8 @@
| * <description>
| *
| * @see <related>
| - * @author Rickard �berg ([EMAIL PROTECTED])
| - * @version $Revision: 1.2 $
| + * @author <a href="mailto:[EMAIL PROTECTED]">Rickard
|�berg</a>.
| + * @version $Revision: 1.3 $
| */
| public interface SystemPropertiesMBean
| {
|
|
|
| 1.2 +2 -2 jboss/src/main/org/jboss/util/TimedCachePolicy.java
|
| Index: TimedCachePolicy.java
| ===================================================================
| RCS file:
|/cvsroot/jboss/jboss/src/main/org/jboss/util/TimedCachePolicy.java,v
| retrieving revision 1.1
| retrieving revision 1.2
| diff -u -r1.1 -r1.2
| --- TimedCachePolicy.java 2001/02/07 07:00:44 1.1
| +++ TimedCachePolicy.java 2001/06/18 20:01:28 1.2
| @@ -22,8 +22,8 @@
| This is a lazy cache policy in that objects are not checked for
|expiration
| until they are accessed.
|
| -@author [EMAIL PROTECTED]
| -@version $Revision: 1.1 $
| +@author <a href="mailto:[EMAIL PROTECTED]">Scott Stark</a>.
| +@version $Revision: 1.2 $
| */
| public class TimedCachePolicy extends TimerTask implements CachePolicy
| {
|
|
|
| 1.3 +2 -2 jboss/src/main/org/jboss/util/TimerQueue.java
|
| Index: TimerQueue.java
| ===================================================================
| RCS file: /cvsroot/jboss/jboss/src/main/org/jboss/util/TimerQueue.java,v
| retrieving revision 1.2
| retrieving revision 1.3
| diff -u -r1.2 -r1.3
| --- TimerQueue.java 2000/12/07 15:45:21 1.2
| +++ TimerQueue.java 2001/06/18 20:01:28 1.3
| @@ -13,8 +13,8 @@
| * for compatibility with jdk 1.2 it is reimplemented here.
| *
| * @see TimerTask
| - * @author Simone Bordet ([EMAIL PROTECTED])
| - * @version $Revision: 1.2 $
| + * @author <a href="mailto:[EMAIL PROTECTED]">Simone Bordet</a>
| + * @version $Revision: 1.3 $
| */
| public class TimerQueue
| extends WorkerQueue
|
|
|
| 1.3 +2 -2 jboss/src/main/org/jboss/util/TimerTask.java
|
| Index: TimerTask.java
| ===================================================================
| RCS file: /cvsroot/jboss/jboss/src/main/org/jboss/util/TimerTask.java,v
| retrieving revision 1.2
| retrieving revision 1.3
| diff -u -r1.2 -r1.3
| --- TimerTask.java 2000/12/07 15:45:21 1.2
| +++ TimerTask.java 2001/06/18 20:01:28 1.3
| @@ -13,8 +13,8 @@
| * for compatibility with jdk 1.2 we reimplemented it.
| *
| * @see TimerQueue
| - * @author Simone Bordet ([EMAIL PROTECTED])
| - * @version $Revision: 1.2 $
| + * @author <a href="mailto:[EMAIL PROTECTED]">Simone Bordet</a>
| + * @version $Revision: 1.3 $
| */
| public abstract class TimerTask
| implements Executable, Comparable
|
|
|
| 1.2 +2 -2 jboss/src/main/org/jboss/util/WaitSemaphore.java
|
| Index: WaitSemaphore.java
| ===================================================================
| RCS file:
|/cvsroot/jboss/jboss/src/main/org/jboss/util/WaitSemaphore.java,v
| retrieving revision 1.1
| retrieving revision 1.2
| diff -u -r1.1 -r1.2
| --- WaitSemaphore.java 2001/04/20 23:15:08 1.1
| +++ WaitSemaphore.java 2001/06/18 20:01:28 1.2
| @@ -9,8 +9,8 @@
| /**
| * Wait exclusive semaphore with wait - notify primitives
| *
| - * @author Simone Bordet ([EMAIL PROTECTED])
| - * @version $Revision: 1.1 $
| + * @author <a href="mailto:[EMAIL PROTECTED]">Simone Bordet</a>
| + * @version $Revision: 1.2 $
| */
| public class WaitSemaphore
| extends Semaphore
|
|
|
| 1.2 +2 -2 jboss/src/main/org/jboss/util/WaitSync.java
|
| Index: WaitSync.java
| ===================================================================
| RCS file: /cvsroot/jboss/jboss/src/main/org/jboss/util/WaitSync.java,v
| retrieving revision 1.1
| retrieving revision 1.2
| diff -u -r1.1 -r1.2
| --- WaitSync.java 2001/04/20 23:15:08 1.1
| +++ WaitSync.java 2001/06/18 20:01:28 1.2
| @@ -10,8 +10,8 @@
| * Interface that gives wait - notify primitives to implementors.
| *
| * @see Semaphore
| - * @author Simone Bordet ([EMAIL PROTECTED])
| - * @version $Revision: 1.1 $
| + * @author <a href="mailto:[EMAIL PROTECTED]">Simone Bordet</a>
| + * @version $Revision: 1.2 $
| */
| public interface WaitSync extends Sync
| {
|
|
|
| 1.6 +2 -2 jboss/src/main/org/jboss/util/WorkerQueue.java
|
| Index: WorkerQueue.java
| ===================================================================
| RCS file: /cvsroot/jboss/jboss/src/main/org/jboss/util/WorkerQueue.java,v
| retrieving revision 1.5
| retrieving revision 1.6
| diff -u -r1.5 -r1.6
| --- WorkerQueue.java 2000/12/07 15:45:21 1.5
| +++ WorkerQueue.java 2001/06/18 20:01:28 1.6
| @@ -11,8 +11,8 @@
| * by a single thread.
| *
| * @see Executable
| - * @author Simone Bordet ([EMAIL PROTECTED])
| - * @version $Revision: 1.5 $
| + * @author <a href="mailto:[EMAIL PROTECTED]">Simone Bordet</a>
| + * @version $Revision: 1.6 $
| */
| public class WorkerQueue
| {
|
|
|
| 1.2 +2 -2 jboss/src/main/org/jboss/util/XmlHelper.java
|
| Index: XmlHelper.java
| ===================================================================
| RCS file: /cvsroot/jboss/jboss/src/main/org/jboss/util/XmlHelper.java,v
| retrieving revision 1.1
| retrieving revision 1.2
| diff -u -r1.1 -r1.2
| --- XmlHelper.java 2001/03/07 09:46:54 1.1
| +++ XmlHelper.java 2001/06/18 20:01:28 1.2
| @@ -16,8 +16,8 @@
| /**
| * A utility class to cover up the rough bits of xml parsing
| *
| - * @author Chris Kimpton ( [EMAIL PROTECTED] )
| - * @version $Revision: 1.1 $
| + * @author <a href="mailto:[EMAIL PROTECTED]">Chris Kimpton</a>
| + * @version $Revision: 1.2 $
| */
| public class XmlHelper
| {
|
|
|
|
|_______________________________________________
|Jboss-development mailing list
|[EMAIL PROTECTED]
|http://lists.sourceforge.net/lists/listinfo/jboss-development
_______________________________________________
Jboss-development mailing list
[EMAIL PROTECTED]
http://lists.sourceforge.net/lists/listinfo/jboss-development