// Copyright 2001, FreeHEP. package org.freehep.graphicsio.emf.gdi; import java.io.IOException; import org.freehep.graphicsio.emf.EMFInputStream; import org.freehep.graphicsio.emf.EMFOutputStream; import org.freehep.graphicsio.emf.EMFTag; /** * CreateBrushIndirect TAG. * * @author Mark Donszelmann * @version $Id: CreateBrushIndirect.java,v 1.5 2009-08-17 21:44:44 murkle Exp $ */ public class CreateBrushIndirect extends EMFTag { private int index; private LogBrush32 brush; public CreateBrushIndirect() { super(39, 1); } public CreateBrushIndirect(int index, LogBrush32 brush) { this(); this.index = index; this.brush = brush; } @Override public EMFTag read(int tagID, EMFInputStream emf, int len) throws IOException { CreateBrushIndirect tag = new CreateBrushIndirect(emf.readDWORD(), new LogBrush32(emf)); return tag; } @Override public void write(int tagID, EMFOutputStream emf) throws IOException { emf.writeDWORD(index); brush.write(emf); } @Override public String toString() { return super.toString() + "\n" + " index: 0x" + Integer.toHexString(index) + "\n" + brush.toString(); } public int getIndex() { return index; } public LogBrush32 getBrush() { return brush; } }