Here you can find the source of shorten(String fullClassName)
public static String shorten(String fullClassName)
//package com.java2s; //License from project: Apache License public class Main { public static String shorten(String fullClassName) { return fullClassName.substring(fullClassName.lastIndexOf('.') + 1); }/*from w w w . j av a 2s. com*/ }