Main.java Source code

Java tutorial

Introduction

Here is the source code for Main.java

Source

//package com.java2s;
import android.text.TextUtils;

public class Main {
    public static boolean textIsNOTEmpty(String a, String a1, String a2, String a3, String a4) {
        if (!TextUtils.isEmpty(a) && !TextUtils.isEmpty(a1) && !TextUtils.isEmpty(a2) && !TextUtils.isEmpty(a3)
                && !TextUtils.isEmpty(a4)) {
            return true;
        }
        return false;
    }
}