OSDN Git Service

Create a ParsedNdefMessage class with supporting implementations.
authorNick Kralevich <nnk@google.com>
Fri, 15 Oct 2010 00:04:14 +0000 (17:04 -0700)
committerNick Kralevich <nnk@google.com>
Fri, 15 Oct 2010 15:48:58 +0000 (08:48 -0700)
commit8149e89466644930069887527143d20cc7c91cfc
tree77ddc28337f908b612756b92699c1496241b5798
parentab67f493dc44c1dfd6c795abcf61dfec2f233014
Create a ParsedNdefMessage class with supporting implementations.

Change-Id: I13a199ad01a726a30e8851a675386c34f2dfa605
17 files changed:
apps/Tag/src/com/android/apps/tag/NdefUtil.java
apps/Tag/src/com/android/apps/tag/TagAdapter.java
apps/Tag/src/com/android/apps/tag/TagDBHelper.java
apps/Tag/src/com/android/apps/tag/TagList.java
apps/Tag/src/com/android/apps/tag/TagViewer.java
apps/Tag/src/com/android/apps/tag/message/EmptyMessage.java [new file with mode: 0644]
apps/Tag/src/com/android/apps/tag/message/NdefMessageParser.java [new file with mode: 0644]
apps/Tag/src/com/android/apps/tag/message/ParsedNdefMessage.java [new file with mode: 0644]
apps/Tag/src/com/android/apps/tag/message/SmartPosterMessage.java [new file with mode: 0644]
apps/Tag/src/com/android/apps/tag/message/TextMessage.java [new file with mode: 0644]
apps/Tag/src/com/android/apps/tag/message/UnknownMessage.java [new file with mode: 0644]
apps/Tag/src/com/android/apps/tag/message/UriMessage.java [new file with mode: 0644]
apps/Tag/src/com/android/apps/tag/record/SmartPoster.java
apps/Tag/src/com/android/apps/tag/record/TextRecord.java
apps/Tag/src/com/android/apps/tag/record/UriRecord.java
apps/Tag/tests/src/com/android/apps/tag/NdefUtilTest.java
apps/Tag/tests/src/com/android/apps/tag/SmartPosterTest.java