OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:BluetoothMapConvoContactElement
(Results
1 - 2
of
2
) sorted by null
/packages/apps/Bluetooth/src/com/android/bluetooth/map/
BluetoothMapConvoContactElement.java
32
public class
BluetoothMapConvoContactElement
33
implements Comparable<
BluetoothMapConvoContactElement
> {
49
private static final String TAG = "
BluetoothMapConvoContactElement
";
63
public static
BluetoothMapConvoContactElement
createFromMapContact(MapContact contact,
65
BluetoothMapConvoContactElement
newElement = new
BluetoothMapConvoContactElement
();
73
public
BluetoothMapConvoContactElement
(String uci, String name, String displayName,
94
public
BluetoothMapConvoContactElement
() {
183
public int compareTo(
BluetoothMapConvoContactElement
e) {
238
* Call this function to create a
BluetoothMapConvoContactElement
. Will consume the end-tag
[
all
...]
BluetoothMapConvoListingElement.java
54
private List<
BluetoothMapConvoContactElement
> mContacts;
112
public List<
BluetoothMapConvoContactElement
> getContacts() {
116
public void setContacts(List<
BluetoothMapConvoContactElement
> contacts) {
120
public void addContact(
BluetoothMapConvoContactElement
contact){
122
mContacts = new ArrayList<
BluetoothMapConvoContactElement
>();
126
public void removeContact(
BluetoothMapConvoContactElement
contact){
272
for(
BluetoothMapConvoContactElement
contact:mContacts){
322
if(name.equalsIgnoreCase(
BluetoothMapConvoContactElement
.XML_TAG_CONVOCONTACT)){
323
newElement.addContact(
BluetoothMapConvoContactElement
.createFromXml(parser));
Completed in 49 milliseconds