Changes between Version 7 and Version 8 of ApertureDataObject
- Timestamp:
- 10/17/05 23:22:57 (19 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
ApertureDataObject
v7 v8 92 92 /** 93 93 * what is the mime-type of the content, if there is content? 94 * This is set by the DataAccessor 95 * @return null or a mimetype identifier like "text/plain" 94 96 */ 95 public String getMimeType(); 97 public String getContentMimeType(); 98 99 /** 100 * what is the character-encoding (using ansi identifiers like "UTF-8" 101 * or "ISO-8859-1") of the content, if there is content. Will 102 * return null if not known or if content is null. 103 * This is set by the DataAccessor 104 * @return null or a encoding identifier like "UTF-8" 105 */ 106 public String getContentEncoding(); 96 107 } 97 108 }}}