static String getClassName(String mid) { int pos = mid.indexOf('='); if (pos > 0 && pos < mid.length - 1) return mid.substring(0, pos); return mid; }