packagecom.contrarywind.adapter;publicinterfaceWheelAdapter<T>{/** * Gets items count * @return the count of wheel items */intgetItemsCount();/** * Gets a wheel item by index. * @param index the item index * @return the wheel item text or null */TgetItem(intindex);/** * Gets maximum item length. It is used to determine the wheel width. * If -1 is returned there will be used the default wheel width. * @param o the item object * @return the maximum item length or -1 */intindexOf(To);}