Home | History | Annotate | Download | only in model

Lines Matching refs:ContentType

30 import com.google.android.mms.ContentType;
39 sSupportedImageTypes = ContentType.getImageTypes();
40 sSupportedAudioTypes = ContentType.getAudioTypes();
41 sSupportedVideoTypes = ContentType.getVideoTypes();
71 public void checkImageContentType(String contentType)
73 if (null == contentType) {
77 if (!sSupportedImageTypes.contains(contentType)) {
79 + contentType);
83 public void checkAudioContentType(String contentType)
85 if (null == contentType) {
89 if (!sSupportedAudioTypes.contains(contentType)) {
91 + contentType);
95 public void checkVideoContentType(String contentType)
97 if (null == contentType) {
101 if (!sSupportedVideoTypes.contains(contentType)) {
103 + contentType);