View Javadoc

1   // Copyright 2002, FreeHEP.
2   package org.freehep.graphicsio.emf.gdi;
3   
4   import java.io.IOException;
5   
6   import org.freehep.graphicsio.emf.EMFInputStream;
7   import org.freehep.graphicsio.emf.EMFTag;
8   
9   /**
10   * AbortPath TAG.
11   * 
12   * @author Mark Donszelmann
13   * @version $Id: AbortPath.java 10140 2006-12-07 07:50:41Z duns $
14   */
15  public class AbortPath extends EMFTag {
16  
17  	public AbortPath() {
18          super(68, 1);
19      }
20  
21      public EMFTag read(int tagID, EMFInputStream emf, int len)
22              throws IOException {
23  
24          return this;
25      }
26  }