◆ convertToString()
String org.turro.contacts.social.SocialGroupListbox.convertToString |
( |
SocialGroupValue |
v | ) |
|
|
protected |
◆ getKeyString()
String org.turro.contacts.social.SocialGroupListbox.getKeyString |
( |
| ) |
|
◆ loadSocialGroups()
void org.turro.contacts.social.SocialGroupListbox.loadSocialGroups |
( |
boolean |
multiple | ) |
|
Definition at line 53 of file SocialGroupListbox.java.
59 TreeSet<SocialGroupValue>
set =
new TreeSet<>();
60 SocialGroups.allowedSocialGroups().forEach(sg -> {
61 set.add(
new SocialGroupValue(sg.getName(), sg.getId(), sg.getType()));
◆ setContact()
void org.turro.contacts.social.SocialGroupListbox.setContact |
( |
Contact |
contact | ) |
|
Definition at line 35 of file SocialGroupListbox.java.
39 SocialGroups instance = SocialGroups.instance();
40 Set<SocialGroupValue> selected =
new HashSet<>();
41 contact.getSyndications().forEach(syndication -> {
42 SecurityGroup sg = instance.getSocialGroup(syndication.getName());
43 selected.add(
new SocialGroupValue(sg.getName(), sg.getId(), sg.getType()));
◆ setKeyString()
void org.turro.contacts.social.SocialGroupListbox.setKeyString |
( |
String |
key | ) |
|
The documentation for this class was generated from the following file: