com.jidesoft.grouper.date.DateYearGrouper Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of jide-oss Show documentation
Show all versions of jide-oss Show documentation
JIDE Common Layer (Professional Swing Components)
package com.jidesoft.grouper.date;
import com.jidesoft.converter.ConverterContext;
import com.jidesoft.converter.YearNameConverter;
import com.jidesoft.grouper.GroupResources;
import com.jidesoft.grouper.GrouperContext;
import java.util.Calendar;
import java.util.Locale;
/**
*/
public class DateYearGrouper extends DateGrouper {
public static GrouperContext CONTEXT = new GrouperContext("DateYear");
public Object getValue(Object value) {
return getCalendarField(value, Calendar.YEAR);
}
public String getName() {
return GroupResources.getResourceBundle(Locale.getDefault()).getString("Date.year");
}
// public static void main(String[] args) {
// ObjectGrouper grouper = new DateYearGrouper();
// Calendar calendar = Calendar.getInstance();
// for (int i = 0; i < 40; i++) {
// System.out.println(grouper.getGroupValue(calendar));
// calendar.roll(Calendar.YEAR, 1);
// }
// }
@Override
public ConverterContext getConverterContext() {
return YearNameConverter.CONTEXT;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy