Here you can find the source of and(boolean a, boolean b)
public static boolean and(boolean a, boolean b)
//package com.java2s; //License from project: Open Source License public class Main { public static boolean and(boolean a, boolean b) { return a && b; }/*from w w w . j a v a 2 s . co m*/ }