View Javadoc

1   // Copyright 2001, FreeHEP.
2   package org.freehep.graphicsio.swf;
3   
4   /**
5    * Abstract Control TAG. All control tags derive from this tag.
6    * 
7    * @author Mark Donszelmann
8    * @author Charles Loomis
9    * @version $Id: ControlTag.java 8584 2006-08-10 23:06:37Z duns $
10   */
11  public abstract class ControlTag extends SWFTag {
12  
13      protected ControlTag(int tagID, int version) {
14          super(tagID, version);
15      }
16  
17      public int getTagType() {
18          return CONTROL;
19      }
20  
21      public String toString() {
22          return "Control: " + getName() + " (" + getTag() + ")";
23      }
24  
25  }