Home | History | Annotate | Download | only in boxes
      1 package com.coremedia.iso.boxes;
      2 
      3 /**
      4  * The <class>WriteListener</class> is used to get the offset of
      5  * a box before writing the box. This can be used if a box written
      6  * later needs an offset.
      7  */
      8 public interface WriteListener {
      9     public void beforeWrite(long offset);
     10 }
     11