1 package com.coremedia.iso.boxes.apple; 2 3 /** 4 * itunes MetaData comment box. 5 */ 6 public final class AppleCommentBox extends AbstractAppleMetaDataBox { 7 public static final String TYPE = "\u00a9cmt"; 8 9 AppleCommentBox()10 public AppleCommentBox() { 11 super(TYPE); 12 appleDataBox = AppleDataBox.getStringAppleDataBox(); 13 } 14 15 16 } 17