Home | History | Annotate | Download | only in boxes
      1 package com.coremedia.iso.boxes;
      2 
      3 import com.coremedia.iso.boxes.Box;
      4 
      5 /**
      6  * The <code>FullBox</code> contains all getters and setters specific
      7  * to a so-called full box according to the ISO/IEC 14496/12 specification.
      8  */
      9 public interface FullBox extends Box {
     10     int getVersion();
     11 
     12     void setVersion(int version);
     13 
     14     int getFlags();
     15 
     16     void setFlags(int flags);
     17 }
     18