// Copyright 2001, FreeHEP. package org.freehep.graphicsio.cgm; import java.io.IOException; /** * LineBundleIndex TAG. * * @author Mark Donszelmann * @author Charles Loomis * @version $Id: LineBundleIndex.java 8584 2006-08-10 23:06:37Z duns $ */ public class LineBundleIndex extends CGMTag { private int index; public LineBundleIndex() { super(5, 1, 1); } public LineBundleIndex(int index) { this(); this.index = index; } public void write(int tagID, CGMOutputStream cgm) throws IOException { cgm.writeIntegerIndex(index); } public void write(int tagID, CGMWriter cgm) throws IOException { cgm.print("LINEINDEX "); cgm.writeInteger(index); } }