org.opalj.br
Facilitates matching ClassTypeSignatures that define a simple generic type that has a single type argument with a concrete type.
The following can be used to match, e.g., List<Object>.
List<Object>
val f : Field = ... f.fieldTypeSignature match { case SimpleGenericType(ContainerType,ElementType) => ... case _ => ... }
Facilitates matching ClassTypeSignatures that define a simple generic type that has a single type argument with a concrete type.
The following can be used to match, e.g.,
List<Object>.