You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
// Set the same label for all objects of the given classpublicLJVsetClassLabel(Class<?> cz, Stringlabel);
// Set a label for an individual object of the given classpublic <T> LJVsetObjectLabelProvider(Class<T> cz, ObjectLabelProvider<T> labelProvider);
// Set a label for individual objects of the given class (only if it's a specific field)public <T> LJVsetObjectLabelProvider(Fieldfield, Class<T> cz, ObjectLabelProvider<T> labelProvider);
Proposal
Can we add methods like:
Examples
Issues
IntLabelProvider
,LongLabelProvider
,ByteLabelProvider
or usesetObjectLabelProvider(int.class, (Integer x) -> )
?setClassLabel(List.class, ...)
work only forList
orArrayList
,LinkedList
and other subclasses?The text was updated successfully, but these errors were encountered: