Adds retrieving video work phone.

cusax-fix
Damian Minkov 14 years ago
parent a6e1daf78e
commit 4be4b3f774

@ -256,6 +256,10 @@ protected List<GenericDetail> retrieveDetails(String contactAddress)
if(tmp != null)
result.add(new WorkPhoneDetail(tmp));
tmp = card.getPhoneWork("VIDEO");
if(tmp != null)
result.add(new WorkVideoDetail(tmp));
tmp = card.getPhoneWork("FAX");
if(tmp != null)
result.add(new WorkFaxDetail(tmp));

@ -390,7 +390,7 @@ public FaxDetail(String number)
}
/**
* A detail used for representing a work mobile phone number.
* A detail used for representing a video phone number.
*/
public static class VideoDetail extends PhoneNumberDetail
{
@ -401,6 +401,17 @@ public VideoDetail(String number)
}
}
/**
* A detail used for representing a work video phone number.
*/
public static class WorkVideoDetail extends VideoDetail
{
public WorkVideoDetail(String number)
{
super(number);
}
}
/**
* A Pager number.
*/

Loading…
Cancel
Save