Introduction
Here is the source code for Main.java
Source
//package com.java2s;
// modify it under the terms of the GNU General Public License
public class Main {
public static boolean hasValue(String val) {
return (val != null && val.length() > 0);
}
}