Main.java Source code

Java tutorial

Introduction

Here is the source code for Main.java

Source

//package com.java2s;
//License from project: Apache License 

import javax.lang.model.type.TypeMirror;

import java.util.List;

public class Main {
    public static boolean isParceble(List<? extends TypeMirror> types) {
        for (TypeMirror type : types) {
            if ("android.os.Parcelable".equals(type.toString())) {
                return true;
            }
        }
        return false;
    }
}