Main.java Source code

Java tutorial

Introduction

Here is the source code for Main.java

Source

//package com.java2s;

import android.content.Context;

public class Main {
    @SuppressWarnings("unchecked")
    public static <T> T getSystemService(Context context, String name, T... type) {
        return (T) context.getSystemService(name);
    }
}