org.freehep.graphicsio.emf.gdi.Text Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of freehep-graphicsio-emf Show documentation
Show all versions of freehep-graphicsio-emf Show documentation
FreeHEP Enhanced Metafile Format Driver
The newest version!
// Copyright 2002, FreeHEP.
package org.freehep.graphicsio.emf.gdi;
import java.awt.Point;
import java.awt.Rectangle;
import java.io.IOException;
import org.freehep.graphicsio.emf.EMFConstants;
import org.freehep.graphicsio.emf.EMFOutputStream;
/**
* EMF Text
*
* @author Mark Donszelmann
* @version $Id: freehep-graphicsio-emf/src/main/java/org/freehep/graphicsio/emf/gdi/Text.java 11783e27e55b 2007/01/15 16:30:03 duns $
*/
public abstract class Text implements EMFConstants {
Point pos;
String string;
int options;
Rectangle bounds;
int[] widths;
protected Text(Point pos, String string, int options, Rectangle bounds, int[] widths) {
this.pos = pos;
this.string = string;
this.options = options;
this.bounds = bounds;
this.widths = widths;
}
public Point getPos() {
return pos;
}
public Rectangle getBounds() {
return bounds;
}
public String getString() {
return string;
}
public abstract void write(EMFOutputStream emf) throws IOException;
}