From fd261b1044ce0caa62aa12ca4bd2f0149158ab20 Mon Sep 17 00:00:00 2001 From: Trustin Lee Date: Wed, 3 Sep 2008 05:19:55 +0000 Subject: [PATCH] Added proper author / version tags --- .../netty/handler/execution/ChannelEventRunnable.java | 8 ++++++++ .../handler/execution/DefaultObjectSizeEstimator.java | 8 ++++++++ .../netty/handler/execution/ObjectSizeEstimator.java | 8 ++++++++ 3 files changed, 24 insertions(+) diff --git a/src/main/java/org/jboss/netty/handler/execution/ChannelEventRunnable.java b/src/main/java/org/jboss/netty/handler/execution/ChannelEventRunnable.java index 71df42c435..0bea314484 100644 --- a/src/main/java/org/jboss/netty/handler/execution/ChannelEventRunnable.java +++ b/src/main/java/org/jboss/netty/handler/execution/ChannelEventRunnable.java @@ -25,6 +25,14 @@ package org.jboss.netty.handler.execution; import org.jboss.netty.channel.ChannelEvent; import org.jboss.netty.channel.ChannelHandlerContext; +/** + * + * @author The Netty Project (netty-dev@lists.jboss.org) + * @author Trustin Lee (tlee@redhat.com) + * + * @version $Rev$, $Date$ + * + */ public class ChannelEventRunnable implements Runnable { private final ChannelHandlerContext ctx; private final ChannelEvent e; diff --git a/src/main/java/org/jboss/netty/handler/execution/DefaultObjectSizeEstimator.java b/src/main/java/org/jboss/netty/handler/execution/DefaultObjectSizeEstimator.java index 13888007ac..1762274983 100644 --- a/src/main/java/org/jboss/netty/handler/execution/DefaultObjectSizeEstimator.java +++ b/src/main/java/org/jboss/netty/handler/execution/DefaultObjectSizeEstimator.java @@ -33,6 +33,14 @@ import java.util.concurrent.ConcurrentMap; import org.jboss.netty.buffer.ChannelBuffer; import org.jboss.netty.channel.MessageEvent; +/** + * + * @author The Netty Project (netty-dev@lists.jboss.org) + * @author Trustin Lee (tlee@redhat.com) + * + * @version $Rev$, $Date$ + * + */ public class DefaultObjectSizeEstimator implements ObjectSizeEstimator { private final ConcurrentMap, Integer> class2size = diff --git a/src/main/java/org/jboss/netty/handler/execution/ObjectSizeEstimator.java b/src/main/java/org/jboss/netty/handler/execution/ObjectSizeEstimator.java index fd3f00700b..97e52608bc 100644 --- a/src/main/java/org/jboss/netty/handler/execution/ObjectSizeEstimator.java +++ b/src/main/java/org/jboss/netty/handler/execution/ObjectSizeEstimator.java @@ -22,6 +22,14 @@ */ package org.jboss.netty.handler.execution; +/** + * + * @author The Netty Project (netty-dev@lists.jboss.org) + * @author Trustin Lee (tlee@redhat.com) + * + * @version $Rev$, $Date$ + * + */ public interface ObjectSizeEstimator { int estimateSize(Object o); }