View Javadoc

1   // Copyright 2001, FreeHEP.
2   package org.freehep.graphicsio.swf;
3   
4   import java.io.IOException;
5   
6   /**
7    * ShowFrame TAG.
8    * 
9    * @author Mark Donszelmann
10   * @author Charles Loomis
11   * @version $Id: ShowFrame.java 8584 2006-08-10 23:06:37Z duns $
12   */
13  public class ShowFrame extends ControlTag {
14  
15      public ShowFrame() {
16          super(1, 1);
17      }
18  
19      public SWFTag read(int tagID, SWFInputStream swf, int len)
20              throws IOException {
21          return this;
22      }
23  }