[Soot-list] generic signatures

Tony Yan yan at cse.ohio-state.edu
Sun Apr 14 18:46:12 EDT 2013


Hi,

I have a question about generic signatures.

Suppose we have,

class List<E> { }
class StringList extends List<String> { }

The class declaration for StringList from "javap StringList" is
    class StringList extends List<java.lang.String>
while in jimple code it is
    class StringList extends List

The generic signature "<java.lang.String>" is missing while it is
totally available in the bytecode. So I'm wondering whether this
information is made available in some tags.

Thanks,
Tony


More information about the Soot-list mailing list