You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@commons.apache.org by se...@apache.org on 2015/08/16 09:53:03 UTC

svn commit: r1696115 - /commons/proper/bcel/trunk/src/main/java/org/apache/commons/bcel6/classfile/

Author: sebb
Date: Sun Aug 16 07:53:03 2015
New Revision: 1696115

URL: http://svn.apache.org/r1696115
Log:
Javadoc
(also reduces editing when package name changes)

Modified:
    commons/proper/bcel/trunk/src/main/java/org/apache/commons/bcel6/classfile/ConstantClass.java
    commons/proper/bcel/trunk/src/main/java/org/apache/commons/bcel6/classfile/ConstantDouble.java
    commons/proper/bcel/trunk/src/main/java/org/apache/commons/bcel6/classfile/ConstantFloat.java
    commons/proper/bcel/trunk/src/main/java/org/apache/commons/bcel6/classfile/ConstantInteger.java
    commons/proper/bcel/trunk/src/main/java/org/apache/commons/bcel6/classfile/ConstantInvokeDynamic.java
    commons/proper/bcel/trunk/src/main/java/org/apache/commons/bcel6/classfile/ConstantLong.java
    commons/proper/bcel/trunk/src/main/java/org/apache/commons/bcel6/classfile/ConstantMethodHandle.java
    commons/proper/bcel/trunk/src/main/java/org/apache/commons/bcel6/classfile/ConstantMethodType.java
    commons/proper/bcel/trunk/src/main/java/org/apache/commons/bcel6/classfile/ConstantNameAndType.java
    commons/proper/bcel/trunk/src/main/java/org/apache/commons/bcel6/classfile/ConstantString.java
    commons/proper/bcel/trunk/src/main/java/org/apache/commons/bcel6/classfile/ConstantUtf8.java

Modified: commons/proper/bcel/trunk/src/main/java/org/apache/commons/bcel6/classfile/ConstantClass.java
URL: http://svn.apache.org/viewvc/commons/proper/bcel/trunk/src/main/java/org/apache/commons/bcel6/classfile/ConstantClass.java?rev=1696115&r1=1696114&r2=1696115&view=diff
==============================================================================
--- commons/proper/bcel/trunk/src/main/java/org/apache/commons/bcel6/classfile/ConstantClass.java (original)
+++ commons/proper/bcel/trunk/src/main/java/org/apache/commons/bcel6/classfile/ConstantClass.java Sun Aug 16 07:53:03 2015
@@ -24,8 +24,7 @@ import java.io.IOException;
 import org.apache.commons.bcel6.Constants;
 
 /** 
- * This class is derived from the abstract 
- * <A HREF="org.apache.commons.bcel6.classfile.Constant.html">Constant</A> class 
+ * This class is derived from the abstract {@link Constant}
  * and represents a reference to a (external) class.
  *
  * @version $Id$

Modified: commons/proper/bcel/trunk/src/main/java/org/apache/commons/bcel6/classfile/ConstantDouble.java
URL: http://svn.apache.org/viewvc/commons/proper/bcel/trunk/src/main/java/org/apache/commons/bcel6/classfile/ConstantDouble.java?rev=1696115&r1=1696114&r2=1696115&view=diff
==============================================================================
--- commons/proper/bcel/trunk/src/main/java/org/apache/commons/bcel6/classfile/ConstantDouble.java (original)
+++ commons/proper/bcel/trunk/src/main/java/org/apache/commons/bcel6/classfile/ConstantDouble.java Sun Aug 16 07:53:03 2015
@@ -24,8 +24,7 @@ import java.io.IOException;
 import org.apache.commons.bcel6.Constants;
 
 /** 
- * This class is derived from the abstract 
- * <A HREF="org.apache.commons.bcel6.classfile.Constant.html">Constant</A> class 
+ * This class is derived from the abstract  {@link Constant}
  * and represents a reference to a Double object.
  *
  * @version $Id$

Modified: commons/proper/bcel/trunk/src/main/java/org/apache/commons/bcel6/classfile/ConstantFloat.java
URL: http://svn.apache.org/viewvc/commons/proper/bcel/trunk/src/main/java/org/apache/commons/bcel6/classfile/ConstantFloat.java?rev=1696115&r1=1696114&r2=1696115&view=diff
==============================================================================
--- commons/proper/bcel/trunk/src/main/java/org/apache/commons/bcel6/classfile/ConstantFloat.java (original)
+++ commons/proper/bcel/trunk/src/main/java/org/apache/commons/bcel6/classfile/ConstantFloat.java Sun Aug 16 07:53:03 2015
@@ -24,8 +24,7 @@ import java.io.IOException;
 import org.apache.commons.bcel6.Constants;
 
 /** 
- * This class is derived from the abstract 
- * <A HREF="org.apache.commons.bcel6.classfile.Constant.html">Constant</A> class 
+ * This class is derived from the abstract {@link Constant} 
  * and represents a reference to a float object.
  *
  * @version $Id$

Modified: commons/proper/bcel/trunk/src/main/java/org/apache/commons/bcel6/classfile/ConstantInteger.java
URL: http://svn.apache.org/viewvc/commons/proper/bcel/trunk/src/main/java/org/apache/commons/bcel6/classfile/ConstantInteger.java?rev=1696115&r1=1696114&r2=1696115&view=diff
==============================================================================
--- commons/proper/bcel/trunk/src/main/java/org/apache/commons/bcel6/classfile/ConstantInteger.java (original)
+++ commons/proper/bcel/trunk/src/main/java/org/apache/commons/bcel6/classfile/ConstantInteger.java Sun Aug 16 07:53:03 2015
@@ -24,8 +24,7 @@ import java.io.IOException;
 import org.apache.commons.bcel6.Constants;
 
 /** 
- * This class is derived from the abstract 
- * <A HREF="org.apache.commons.bcel6.classfile.Constant.html">Constant</A> class 
+ * This class is derived from the abstract {@link Constant}
  * and represents a reference to an int object.
  *
  * @version $Id$

Modified: commons/proper/bcel/trunk/src/main/java/org/apache/commons/bcel6/classfile/ConstantInvokeDynamic.java
URL: http://svn.apache.org/viewvc/commons/proper/bcel/trunk/src/main/java/org/apache/commons/bcel6/classfile/ConstantInvokeDynamic.java?rev=1696115&r1=1696114&r2=1696115&view=diff
==============================================================================
--- commons/proper/bcel/trunk/src/main/java/org/apache/commons/bcel6/classfile/ConstantInvokeDynamic.java (original)
+++ commons/proper/bcel/trunk/src/main/java/org/apache/commons/bcel6/classfile/ConstantInvokeDynamic.java Sun Aug 16 07:53:03 2015
@@ -23,8 +23,7 @@ import java.io.IOException;
 import org.apache.commons.bcel6.Constants;
 
 /** 
- * This class is derived from the abstract 
- * <A HREF="org.apache.commons.bcel6.classfile.Constant.html">Constant</A> class 
+ * This class is derived from the abstract {@link Constant}
  * and represents a reference to a invoke dynamic.
  * 
  * @see     Constant

Modified: commons/proper/bcel/trunk/src/main/java/org/apache/commons/bcel6/classfile/ConstantLong.java
URL: http://svn.apache.org/viewvc/commons/proper/bcel/trunk/src/main/java/org/apache/commons/bcel6/classfile/ConstantLong.java?rev=1696115&r1=1696114&r2=1696115&view=diff
==============================================================================
--- commons/proper/bcel/trunk/src/main/java/org/apache/commons/bcel6/classfile/ConstantLong.java (original)
+++ commons/proper/bcel/trunk/src/main/java/org/apache/commons/bcel6/classfile/ConstantLong.java Sun Aug 16 07:53:03 2015
@@ -24,8 +24,7 @@ import java.io.IOException;
 import org.apache.commons.bcel6.Constants;
 
 /** 
- * This class is derived from the abstract 
- * <A HREF="org.apache.commons.bcel6.classfile.Constant.html">Constant</A> class 
+ * This class is derived from the abstract {@link Constant}
  * and represents a reference to a long object.
  *
  * @version $Id$

Modified: commons/proper/bcel/trunk/src/main/java/org/apache/commons/bcel6/classfile/ConstantMethodHandle.java
URL: http://svn.apache.org/viewvc/commons/proper/bcel/trunk/src/main/java/org/apache/commons/bcel6/classfile/ConstantMethodHandle.java?rev=1696115&r1=1696114&r2=1696115&view=diff
==============================================================================
--- commons/proper/bcel/trunk/src/main/java/org/apache/commons/bcel6/classfile/ConstantMethodHandle.java (original)
+++ commons/proper/bcel/trunk/src/main/java/org/apache/commons/bcel6/classfile/ConstantMethodHandle.java Sun Aug 16 07:53:03 2015
@@ -24,8 +24,7 @@ import java.io.IOException;
 import org.apache.commons.bcel6.Constants;
 
 /** 
- * This class is derived from the abstract 
- * <A HREF="org.apache.commons.bcel6.classfile.Constant.html">Constant</A> class 
+ * This class is derived from the abstract {@link Constant}
  * and represents a reference to a method handle.
  * 
  * @see     Constant

Modified: commons/proper/bcel/trunk/src/main/java/org/apache/commons/bcel6/classfile/ConstantMethodType.java
URL: http://svn.apache.org/viewvc/commons/proper/bcel/trunk/src/main/java/org/apache/commons/bcel6/classfile/ConstantMethodType.java?rev=1696115&r1=1696114&r2=1696115&view=diff
==============================================================================
--- commons/proper/bcel/trunk/src/main/java/org/apache/commons/bcel6/classfile/ConstantMethodType.java (original)
+++ commons/proper/bcel/trunk/src/main/java/org/apache/commons/bcel6/classfile/ConstantMethodType.java Sun Aug 16 07:53:03 2015
@@ -24,8 +24,7 @@ import java.io.IOException;
 import org.apache.commons.bcel6.Constants;
 
 /** 
- * This class is derived from the abstract 
- * <A HREF="org.apache.commons.bcel6.classfile.Constant.html">Constant</A> class 
+ * This class is derived from the abstract {@link Constant}
  * and represents a reference to a method type.
  * 
  * @see     Constant

Modified: commons/proper/bcel/trunk/src/main/java/org/apache/commons/bcel6/classfile/ConstantNameAndType.java
URL: http://svn.apache.org/viewvc/commons/proper/bcel/trunk/src/main/java/org/apache/commons/bcel6/classfile/ConstantNameAndType.java?rev=1696115&r1=1696114&r2=1696115&view=diff
==============================================================================
--- commons/proper/bcel/trunk/src/main/java/org/apache/commons/bcel6/classfile/ConstantNameAndType.java (original)
+++ commons/proper/bcel/trunk/src/main/java/org/apache/commons/bcel6/classfile/ConstantNameAndType.java Sun Aug 16 07:53:03 2015
@@ -24,8 +24,7 @@ import java.io.IOException;
 import org.apache.commons.bcel6.Constants;
 
 /** 
- * This class is derived from the abstract 
- * <A HREF="org.apache.commons.bcel6.classfile.Constant.html">Constant</A> class 
+ * This class is derived from the abstract {@link Constant}
  * and represents a reference to the name and signature
  * of a field or method.
  *

Modified: commons/proper/bcel/trunk/src/main/java/org/apache/commons/bcel6/classfile/ConstantString.java
URL: http://svn.apache.org/viewvc/commons/proper/bcel/trunk/src/main/java/org/apache/commons/bcel6/classfile/ConstantString.java?rev=1696115&r1=1696114&r2=1696115&view=diff
==============================================================================
--- commons/proper/bcel/trunk/src/main/java/org/apache/commons/bcel6/classfile/ConstantString.java (original)
+++ commons/proper/bcel/trunk/src/main/java/org/apache/commons/bcel6/classfile/ConstantString.java Sun Aug 16 07:53:03 2015
@@ -24,8 +24,7 @@ import java.io.IOException;
 import org.apache.commons.bcel6.Constants;
 
 /** 
- * This class is derived from the abstract 
- * <A HREF="org.apache.commons.bcel6.classfile.Constant.html">Constant</A> class 
+ * This class is derived from the abstract {@link Constant}
  * and represents a reference to a String object.
  *
  * @version $Id$

Modified: commons/proper/bcel/trunk/src/main/java/org/apache/commons/bcel6/classfile/ConstantUtf8.java
URL: http://svn.apache.org/viewvc/commons/proper/bcel/trunk/src/main/java/org/apache/commons/bcel6/classfile/ConstantUtf8.java?rev=1696115&r1=1696114&r2=1696115&view=diff
==============================================================================
--- commons/proper/bcel/trunk/src/main/java/org/apache/commons/bcel6/classfile/ConstantUtf8.java (original)
+++ commons/proper/bcel/trunk/src/main/java/org/apache/commons/bcel6/classfile/ConstantUtf8.java Sun Aug 16 07:53:03 2015
@@ -27,8 +27,7 @@ import java.util.Map;
 import org.apache.commons.bcel6.Constants;
 
 /** 
- * This class is derived from the abstract 
- * <A HREF="org.apache.commons.bcel6.classfile.Constant.html">Constant</A> class 
+ * This class is derived from the abstract {@link Constant}
  * and represents a reference to a Utf8 encoded string.
  *
  * @version $Id$