Main.java Source code

Java tutorial

Introduction

Here is the source code for Main.java

Source

//package com.java2s;
import java.util.Collection;

public class Main {
    public static <T> boolean allContains(final T element, final Collection<T>... colls) {
        for (final Collection<T> coll : colls)
            if (!coll.contains(element))
                return false;
        return true;
    }
}