summaryrefslogtreecommitdiff
path: root/tools/external/asm/org/objectweb/asm/Type.java
diff options
context:
space:
mode:
Diffstat (limited to 'tools/external/asm/org/objectweb/asm/Type.java')
-rw-r--r--tools/external/asm/org/objectweb/asm/Type.java54
1 files changed, 27 insertions, 27 deletions
diff --git a/tools/external/asm/org/objectweb/asm/Type.java b/tools/external/asm/org/objectweb/asm/Type.java
index cf8dbbf99..ae314e8cd 100644
--- a/tools/external/asm/org/objectweb/asm/Type.java
+++ b/tools/external/asm/org/objectweb/asm/Type.java
@@ -34,7 +34,7 @@ import java.lang.reflect.Method;
/**
* A Java type. This class can be used to make it easier to manipulate type and
* method descriptors.
- *
+ *
* @author Eric Bruneton
* @author Chris Nokleberg
*/
@@ -172,7 +172,7 @@ public class Type {
/**
* Constructs a primitive type.
- *
+ *
* @param sort the sort of the primitive type to be constructed.
*/
private Type(final int sort) {
@@ -182,7 +182,7 @@ public class Type {
/**
* Constructs a reference type.
- *
+ *
* @param sort the sort of the reference type to be constructed.
* @param buf a buffer containing the descriptor of the previous type.
* @param off the offset of this descriptor in the previous buffer.
@@ -198,7 +198,7 @@ public class Type {
/**
* Returns the Java type corresponding to the given type descriptor.
- *
+ *
* @param typeDescriptor a type descriptor.
* @return the Java type corresponding to the given type descriptor.
*/
@@ -208,7 +208,7 @@ public class Type {
/**
* Returns the Java type corresponding to the given class.
- *
+ *
* @param c a class.
* @return the Java type corresponding to the given class.
*/
@@ -241,7 +241,7 @@ public class Type {
/**
* Returns the Java types corresponding to the argument types of the given
* method descriptor.
- *
+ *
* @param methodDescriptor a method descriptor.
* @return the Java types corresponding to the argument types of the given
* method descriptor.
@@ -276,7 +276,7 @@ public class Type {
/**
* Returns the Java types corresponding to the argument types of the given
* method.
- *
+ *
* @param method a method.
* @return the Java types corresponding to the argument types of the given
* method.
@@ -293,7 +293,7 @@ public class Type {
/**
* Returns the Java type corresponding to the return type of the given
* method descriptor.
- *
+ *
* @param methodDescriptor a method descriptor.
* @return the Java type corresponding to the return type of the given
* method descriptor.
@@ -306,7 +306,7 @@ public class Type {
/**
* Returns the Java type corresponding to the return type of the given
* method.
- *
+ *
* @param method a method.
* @return the Java type corresponding to the return type of the given
* method.
@@ -317,7 +317,7 @@ public class Type {
/**
* Returns the Java type corresponding to the given type descriptor.
- *
+ *
* @param buf a buffer containing a type descriptor.
* @param off the offset of this descriptor in the previous buffer.
* @return the Java type corresponding to the given type descriptor.
@@ -371,7 +371,7 @@ public class Type {
/**
* Returns the sort of this Java type.
- *
+ *
* @return {@link #VOID VOID}, {@link #BOOLEAN BOOLEAN},
* {@link #CHAR CHAR}, {@link #BYTE BYTE}, {@link #SHORT SHORT},
* {@link #INT INT}, {@link #FLOAT FLOAT}, {@link #LONG LONG},
@@ -385,7 +385,7 @@ public class Type {
/**
* Returns the number of dimensions of this array type. This method should
* only be used for an array type.
- *
+ *
* @return the number of dimensions of this array type.
*/
public int getDimensions() {
@@ -399,7 +399,7 @@ public class Type {
/**
* Returns the type of the elements of this array type. This method should
* only be used for an array type.
- *
+ *
* @return Returns the type of the elements of this array type.
*/
public Type getElementType() {
@@ -408,7 +408,7 @@ public class Type {
/**
* Returns the name of the class corresponding to this type.
- *
+ *
* @return the fully qualified name of the class corresponding to this type.
*/
public String getClassName() {
@@ -447,7 +447,7 @@ public class Type {
* Returns the internal name of the class corresponding to this object type.
* The internal name of a class is its fully qualified name, where '.' are
* replaced by '/'. This method should only be used for an object type.
- *
+ *
* @return the internal name of the class corresponding to this object type.
*/
public String getInternalName() {
@@ -460,7 +460,7 @@ public class Type {
/**
* Returns the descriptor corresponding to this Java type.
- *
+ *
* @return the descriptor corresponding to this Java type.
*/
public String getDescriptor() {
@@ -472,7 +472,7 @@ public class Type {
/**
* Returns the descriptor corresponding to the given argument and return
* types.
- *
+ *
* @param returnType the return type of the method.
* @param argumentTypes the argument types of the method.
* @return the descriptor corresponding to the given argument and return
@@ -495,7 +495,7 @@ public class Type {
/**
* Appends the descriptor corresponding to this Java type to the given
* string buffer.
- *
+ *
* @param buf the string buffer to which the descriptor must be appended.
*/
private void getDescriptor(final StringBuffer buf) {
@@ -542,7 +542,7 @@ public class Type {
/**
* Returns the internal name of the given class. The internal name of a
* class is its fully qualified name, where '.' are replaced by '/'.
- *
+ *
* @param c an object class.
* @return the internal name of the given class.
*/
@@ -552,7 +552,7 @@ public class Type {
/**
* Returns the descriptor corresponding to the given Java type.
- *
+ *
* @param c an object class, a primitive class or an array class.
* @return the descriptor corresponding to the given class.
*/
@@ -564,7 +564,7 @@ public class Type {
/**
* Returns the descriptor corresponding to the given method.
- *
+ *
* @param m a {@link Method Method} object.
* @return the descriptor of the given method.
*/
@@ -582,7 +582,7 @@ public class Type {
/**
* Appends the descriptor of the given class to the given string buffer.
- *
+ *
* @param buf the string buffer to which the descriptor must be appended.
* @param c the class whose descriptor must be computed.
*/
@@ -635,7 +635,7 @@ public class Type {
/**
* Returns the size of values of this type.
- *
+ *
* @return the size of values of this type, i.e., 2 for <tt>long</tt> and
* <tt>double</tt>, and 1 otherwise.
*/
@@ -645,7 +645,7 @@ public class Type {
/**
* Returns a JVM instruction opcode adapted to this Java type.
- *
+ *
* @param opcode a JVM instruction opcode. This opcode must be one of ILOAD,
* ISTORE, IALOAD, IASTORE, IADD, ISUB, IMUL, IDIV, IREM, INEG, ISHL,
* ISHR, IUSHR, IAND, IOR, IXOR and IRETURN.
@@ -706,7 +706,7 @@ public class Type {
/**
* Tests if the given object is equal to this type.
- *
+ *
* @param o the object to be compared to this type.
* @return <tt>true</tt> if the given object is equal to this type.
*/
@@ -736,7 +736,7 @@ public class Type {
/**
* Returns a hash code value for this type.
- *
+ *
* @return a hash code value for this type.
*/
public int hashCode() {
@@ -751,7 +751,7 @@ public class Type {
/**
* Returns a string representation of this type.
- *
+ *
* @return the descriptor of this type.
*/
public String toString() {