Here you can find the source of summary(String text)
public static String summary(String text)
//package com.java2s; //License from project: Open Source License public class Main { public static String summary(String text) { if (text == null) { return "null"; }//from w w w .j a v a 2s .com return text.substring(0, Math.min(10, text.length())); } }