Package | Description |
---|---|
esmska.data | |
esmska.gui | |
esmska.persistence |
Modifier and Type | Method and Description |
---|---|
java.util.SortedSet<Contact> |
Contacts.getAll()
Get unmodifiable collection of all contacts sorted by name
|
java.util.Set<Contact> |
Envelope.getContacts()
get all recipients
|
Modifier and Type | Method and Description |
---|---|
boolean |
Contacts.add(Contact contact)
Add new contact
|
int |
Contact.compareTo(Contact c) |
boolean |
Contacts.contains(Contact contact)
Search for an existing contact
|
void |
Contact.copyFrom(Contact c)
Copy all contact properties from provided contact to current contact
|
boolean |
Contacts.remove(Contact contact)
Remove existing contact
|
Modifier and Type | Method and Description |
---|---|
boolean |
Contacts.addAll(java.util.Collection<Contact> contacts)
Add new contacts
|
boolean |
Contacts.removeAll(java.util.Collection<Contact> contacts)
Remove existing contacts
|
void |
Envelope.setContacts(java.util.Set<Contact> contacts)
set all recipients
|
Constructor and Description |
---|
Contact(Contact c)
Create new contact with properties copied from provided contact
|
Modifier and Type | Method and Description |
---|---|
Contact |
EditContactPanel.getContact()
Get currently edited contact
|
Contact |
SMSPanel.RecipientTextField.getContact()
Get currently chosen contact.
|
Modifier and Type | Method and Description |
---|---|
java.util.HashSet<Contact> |
ContactPanel.getSelectedContacts()
Return selected contacts
|
Modifier and Type | Method and Description |
---|---|
void |
EditContactPanel.setContact(Contact contact)
Set contact to be edited or use null for new one
|
void |
SMSPanel.RecipientTextField.setContact(Contact contact)
Set contact to display.
|
void |
ContactPanel.setSelectedContact(Contact contact)
set selected contact in contact list
|
void |
ContactPanel.showAddContactDialog(Contact skeleton)
Shows dialog for adding contact with predefined values
|
Modifier and Type | Method and Description |
---|---|
void |
EditContactPanel.setContacts(java.util.Collection<Contact> contacts)
Set contacts for collective editing.
|
void |
SMSPanel.setContacts(java.util.Collection<Contact> contacts)
set selected contacts in contact list or contact to display
|
Modifier and Type | Method and Description |
---|---|
protected java.util.ArrayList<Contact> |
ContactParser.doInBackground() |
static java.util.ArrayList<Contact> |
ImportManager.importContacts(java.io.File file,
ContactParser.ContactType type)
Import contacts from file
|
Modifier and Type | Method and Description |
---|---|
static void |
ExportManager.exportContacts(java.util.Collection<Contact> contacts,
java.io.OutputStream out)
Export contacts to csv format
|
static void |
ExportManager.exportContactsToVCard(java.util.Collection<Contact> contacts,
java.io.OutputStream out)
Export contacts to vCard format
|