summaryrefslogtreecommitdiff
path: root/qpid/java/common/src/main/java/org/apache/qpid/protocol/AMQConstant.java
diff options
context:
space:
mode:
authorRobert Gemmell <robbie@apache.org>2014-08-08 16:39:32 +0000
committerRobert Gemmell <robbie@apache.org>2014-08-08 16:39:32 +0000
commit6b61650c1ad38eacda87dca9a8921a148d6d3bec (patch)
treee4404ad4f82e8b034a7c5132d00d50aac0670b0f /qpid/java/common/src/main/java/org/apache/qpid/protocol/AMQConstant.java
parentdba548b498b8718242353fb3b492d5e29b31e9e9 (diff)
downloadqpid-python-6b61650c1ad38eacda87dca9a8921a148d6d3bec.tar.gz
QPID-5980: port javadoc fixups from trunk to the 0.30 branch
git-svn-id: https://svn.apache.org/repos/asf/qpid/branches/0.30@1616823 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'qpid/java/common/src/main/java/org/apache/qpid/protocol/AMQConstant.java')
-rw-r--r--qpid/java/common/src/main/java/org/apache/qpid/protocol/AMQConstant.java14
1 files changed, 4 insertions, 10 deletions
diff --git a/qpid/java/common/src/main/java/org/apache/qpid/protocol/AMQConstant.java b/qpid/java/common/src/main/java/org/apache/qpid/protocol/AMQConstant.java
index 2a2342ca14..5e39409382 100644
--- a/qpid/java/common/src/main/java/org/apache/qpid/protocol/AMQConstant.java
+++ b/qpid/java/common/src/main/java/org/apache/qpid/protocol/AMQConstant.java
@@ -28,20 +28,14 @@ import java.util.Map;
/**
* Defines constants for AMQP codes and also acts as a factory for creating such constants from the raw codes. Each
* constant also defines a short human readable description of the constant.
- *
- * @todo Why would a constant be defined that is not in the map? Seems more natural that getConstant should raise an
+ * <p>
+ * TODO Why would a constant be defined that is not in the map? Seems more natural that getConstant should raise an
* exception for an unknown constant. Or else provide an explanation of why this is so. Also, there is no way for
* callers to determine the unknown status of a code except by comparing its name to "unknown code", which would
* seem to render this scheme a little bit pointless?
- *
- * @todo Java has a nice enum construct for doing this sort of thing. Maybe this is done in the old style for Java 1.4
+ * <p>
+ * TODO Java has a nice enum construct for doing this sort of thing. Maybe this is done in the old style for Java 1.4
* backward compatability? Now that is handled through retrotranslater it may be time to use enum.
- *
- * <p/><tabld id="crc"><caption>CRC Card</caption>
- * <tr><th> Responsibilities <th> Collaborations
- * <tr><td> Define the set of AMQP status codes.
- * <tr><td> Provide a factory to lookup constants by their code.
- * <tr><td>
*/
public final class AMQConstant
{