Methods Summary |
---|
protected int | compareTo0(Constant other){@inheritDoc}
return annotation.compareTo(((CstAnnotation) other).annotation);
|
public boolean | equals(java.lang.Object other){@inheritDoc}
if (! (other instanceof CstAnnotation)) {
return false;
}
return annotation.equals(((CstAnnotation) other).annotation);
|
public com.android.dexgen.rop.annotation.Annotation | getAnnotation()Get the underlying annotation.
return annotation;
|
public int | hashCode(){@inheritDoc}
return annotation.hashCode();
|
public boolean | isCategory2(){@inheritDoc}
return false;
|
public java.lang.String | toHuman(){@inheritDoc}
return annotation.toString();
|
public java.lang.String | toString(){@inheritDoc}
return annotation.toString();
|
public java.lang.String | typeName(){@inheritDoc}
return "annotation";
|