Here you can find the source of getLastSectionDays(List sections)
private static StringBuffer getLastSectionDays(List sections)
//package com.java2s; // %InstallDIR%\features\org.talend.rcp.branding.%PRODUCTNAME%\%PRODUCTNAME%license.txt import java.util.List; public class Main { private static StringBuffer getLastSectionDays(List sections) { if (sections.size() == 0) { return new StringBuffer(); } else {/*from ww w . j a va 2 s . c o m*/ return (StringBuffer) sections.get(sections.size() - 1); } } }