Main.java Source code

Java tutorial

Introduction

Here is the source code for Main.java

Source

import java.lang.reflect.ParameterizedType;
import java.lang.reflect.Type;
import java.util.ArrayList;

public class Main {
    public static void main(String args[]) throws Exception {

        Type type = StringList.class.getGenericSuperclass();
        System.out.println(type);
        ParameterizedType pt = (ParameterizedType) type;
        Type ownerType = pt.getOwnerType();
        System.out.println(ownerType);

    }
}

class StringList extends ArrayList<String> {
}