|
FreeHEP API Version current |
|||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||
java.lang.Objectjava.awt.Graphics
java.awt.Graphics2D
org.freehep.graphics2d.VectorGraphics
org.freehep.graphicsio.java.JAVAGraphics2D
Exports the java calls made to Graphics2D as source code, with the associated class, field and method definitions, resulting in a class which, when run will produce the same display. Generating such source code may be helpful in setting up test cases without a lot of machinery around it and in debugging problems for different formats. Due to size limitations in the bytecode, see Lindholm and Yellin, "The Java Virtual Machine Specification", p. 136-137, 1997, the following was taken into account:
| Field Summary | |
static String |
PACKAGE_NAME
|
static String |
version
|
| Fields inherited from interface org.freehep.graphics2d.VectorGraphicsConstants |
NUMBER_OF_HORIZ_ALIGNMENTS, NUMBER_OF_SYMBOLS, NUMBER_OF_VERTICAL_ALIGNMENTS, SYMBOL_BOX, SYMBOL_CIRCLE, SYMBOL_CROSS, SYMBOL_DIAMOND, SYMBOL_DN_TRIANGLE, SYMBOL_HLINE, SYMBOL_PLUS, SYMBOL_STAR, SYMBOL_UP_TRIANGLE, SYMBOL_VLINE, TEXT_BASELINE, TEXT_BOTTOM, TEXT_CENTER, TEXT_LEFT, TEXT_RIGHT, TEXT_TOP |
| Constructor Summary | |
|
JAVAGraphics2D(File file,
Component component)
|
|
JAVAGraphics2D(File file,
Dimension size)
|
protected |
JAVAGraphics2D(JAVAGraphics2D graphics)
|
|
JAVAGraphics2D(OutputStream os,
Component component)
|
|
JAVAGraphics2D(OutputStream os,
Dimension size)
|
| Method Summary | |
void |
addRenderingHints(Map hints)
|
void |
clearRect(double x,
double y,
double width,
double height)
|
void |
clearRect(int x,
int y,
int width,
int height)
|
void |
clip(Shape s)
|
void |
clipRect(double x,
double y,
double width,
double height)
|
void |
clipRect(int x,
int y,
int width,
int height)
|
void |
copyArea(int x,
int y,
int width,
int height,
int dx,
int dy)
|
Graphics |
create()
|
Graphics |
create(double x,
double y,
double width,
double height)
|
Graphics |
create(int x,
int y,
int width,
int height)
|
void |
dispose()
|
void |
draw(Shape s)
|
void |
draw3DRect(int x,
int y,
int width,
int height,
boolean raised)
|
void |
drawArc(double x,
double y,
double width,
double height,
double startAngle,
double arcAngle)
Draws an arc. |
void |
drawArc(int x,
int y,
int width,
int height,
int startAngle,
int arcAngle)
|
void |
drawBytes(byte[] data,
int offset,
int length,
int x,
int y)
|
void |
drawChars(char[] data,
int offset,
int length,
int x,
int y)
|
void |
drawGlyphVector(GlyphVector g,
float x,
float y)
|
void |
drawImage(BufferedImage img,
BufferedImageOp op,
int x,
int y)
|
boolean |
drawImage(Image img,
AffineTransform xform,
ImageObserver obs)
|
boolean |
drawImage(Image image,
int x,
int y,
Color bgColor,
ImageObserver observer)
|
boolean |
drawImage(Image image,
int x,
int y,
ImageObserver observer)
|
boolean |
drawImage(Image image,
int x,
int y,
int width,
int height,
Color bgColor,
ImageObserver observer)
|
boolean |
drawImage(Image image,
int x,
int y,
int width,
int height,
ImageObserver observer)
|
boolean |
drawImage(Image image,
int dx1,
int dy1,
int dx2,
int dy2,
int sx1,
int sy1,
int sx2,
int sy2,
Color bgColor,
ImageObserver observer)
|
boolean |
drawImage(Image image,
int dx1,
int dy1,
int dx2,
int dy2,
int sx1,
int sy1,
int sx2,
int sy2,
ImageObserver observer)
|
void |
drawLine(double x1,
double y1,
double x2,
double y2)
Draws a straight line. |
void |
drawLine(int x1,
int y1,
int x2,
int y2)
|
void |
drawOval(double x,
double y,
double width,
double height)
Draws an oval. |
void |
drawOval(int x,
int y,
int width,
int height)
|
void |
drawPolygon(double[] xPoints,
double[] yPoints,
int nPoints)
Draws a polygon. |
void |
drawPolygon(int[] xPoints,
int[] yPoints,
int nPoints)
|
void |
drawPolygon(Polygon p)
|
void |
drawPolyline(double[] xPoints,
double[] yPoints,
int nPoints)
Draws a polyline. |
void |
drawPolyline(int[] xPoints,
int[] yPoints,
int nPoints)
|
void |
drawRect(double x,
double y,
double width,
double height)
Draws a rectangle. |
void |
drawRect(int x,
int y,
int width,
int height)
|
void |
drawRenderableImage(RenderableImage img,
AffineTransform xform)
|
void |
drawRenderedImage(RenderedImage img,
AffineTransform xform)
|
void |
drawRoundRect(double x,
double y,
double width,
double height,
double arcWidth,
double arcHeight)
Draws a rounded rectangle. |
void |
drawRoundRect(int x,
int y,
int width,
int height,
int arcWidth,
int arcHeight)
|
void |
drawString(AttributedCharacterIterator iterator,
float x,
float y)
|
void |
drawString(AttributedCharacterIterator iterator,
int x,
int y)
|
void |
drawString(String str,
double x,
double y)
Draws a string. |
void |
drawString(String str,
double x,
double y,
int horizontal,
int vertical)
|
void |
drawString(String str,
double x,
double y,
int horizontal,
int vertical,
boolean framed,
Color frameColor,
double frameWidth,
boolean banner,
Color bannerColor)
Draws a string with a lot of parameters. |
void |
drawString(String str,
float x,
float y)
|
void |
drawString(String str,
int x,
int y)
|
void |
drawString(TagString str,
double x,
double y)
|
void |
drawString(TagString str,
double x,
double y,
int horizontal,
int vertical)
|
void |
drawString(TagString str,
double x,
double y,
int horizontal,
int vertical,
boolean framed,
Color frameColor,
double frameWidth,
boolean banner,
Color bannerColor)
Draws a TagString with a lot of parameters. |
void |
drawSymbol(double x,
double y,
double size,
int symbol)
|
void |
drawSymbol(int x,
int y,
int size,
int symbol)
|
void |
endExport()
|
void |
fill(Shape s)
|
void |
fill3DRect(int x,
int y,
int width,
int height,
boolean raised)
|
void |
fillAndDraw(Shape s,
Color fillColor)
|
void |
fillAndDrawSymbol(double x,
double y,
double size,
int symbol,
Color fillColor)
|
void |
fillAndDrawSymbol(int x,
int y,
int size,
int symbol,
Color fillColor)
|
void |
fillArc(double x,
double y,
double width,
double height,
double startAngle,
double arcAngle)
Fills an arc. |
void |
fillArc(int x,
int y,
int width,
int height,
int startAngle,
int arcAngle)
|
void |
fillOval(double x,
double y,
double width,
double height)
Fills an oval. |
void |
fillOval(int x,
int y,
int width,
int height)
|
void |
fillPolygon(double[] xPoints,
double[] yPoints,
int nPoints)
Fills a polygon. |
void |
fillPolygon(int[] xPoints,
int[] yPoints,
int nPoints)
|
void |
fillPolygon(Polygon p)
|
void |
fillRect(double x,
double y,
double width,
double height)
Fills a rectangle. |
void |
fillRect(int x,
int y,
int width,
int height)
|
void |
fillRoundRect(double x,
double y,
double width,
double height,
double arcWidth,
double arcHeight)
Fills a rounded rectangle. |
void |
fillRoundRect(int x,
int y,
int width,
int height,
int arcWidth,
int arcHeight)
|
void |
fillSymbol(double x,
double y,
double size,
int symbol)
|
void |
fillSymbol(int x,
int y,
int size,
int symbol)
|
void |
finalize()
|
Color |
getBackground()
|
Shape |
getClip()
|
Rectangle |
getClipBounds()
|
Rectangle |
getClipBounds(Rectangle r)
|
Color |
getColor()
Deprecated. probably forwards to getClipBounds() |
int |
getColorMode()
|
Composite |
getComposite()
|
String |
getCreator()
|
static Properties |
getDefaultProperties()
|
GraphicsConfiguration |
getDeviceConfiguration()
|
Font |
getFont()
|
FontMetrics |
getFontMetrics()
|
FontMetrics |
getFontMetrics(Font font)
|
FontRenderContext |
getFontRenderContext()
|
Paint |
getPaint()
|
Properties |
getProperties()
|
String |
getProperty(String key)
|
Color |
getPropertyColor(String key)
|
Dimension |
getPropertyDimension(String key)
|
double |
getPropertyDouble(String key)
|
Insets |
getPropertyInsets(String key)
|
int |
getPropertyInt(String key)
|
Rectangle |
getPropertyRectangle(String key)
|
Object |
getRenderingHint(RenderingHints.Key key)
|
RenderingHints |
getRenderingHints()
|
Stroke |
getStroke()
|
AffineTransform |
getTransform()
|
boolean |
hit(Rectangle rect,
Shape s,
boolean onStroke)
|
boolean |
hitClip(int x,
int y,
int width,
int height)
|
protected void |
initProperties(Properties defaults)
|
boolean |
isDeviceIndependent()
|
boolean |
isProperty(String key)
|
void |
lineNumberReached(LineNumberWriter.LineNumberEvent event)
|
void |
printComment(String comment)
|
void |
rotate(double theta)
|
void |
rotate(double theta,
double x,
double y)
|
void |
scale(double sx,
double sy)
|
void |
setBackground(Color c)
|
void |
setClip(double x,
double y,
double width,
double height)
|
void |
setClip(int x,
int y,
int width,
int height)
|
void |
setClip(Shape clip)
|
void |
setColor(Color c)
|
void |
setColorMode(int colorMode)
|
void |
setComposite(Composite c)
|
void |
setCreator(String creator)
|
static void |
setDefaultProperties(Properties newProperties)
|
void |
setDeviceIndependent(boolean isDeviceIndependent)
|
void |
setFont(Font font)
|
void |
setLineWidth(double width)
|
void |
setLineWidth(int width)
|
void |
setPaint(Paint p)
|
void |
setPaintMode()
|
void |
setProperties(Properties newProperties)
|
void |
setRenderingHint(RenderingHints.Key hintKey,
Object hintValue)
|
void |
setRenderingHints(Map hints)
|
void |
setStroke(Stroke s)
|
void |
setTransform(AffineTransform xform)
|
void |
setXORMode(Color c1)
|
void |
shear(double shx,
double shy)
|
void |
startExport()
|
String |
toString()
|
void |
transform(AffineTransform xform)
|
void |
translate(double tx,
double ty)
|
void |
translate(int x,
int y)
|
| Methods inherited from class org.freehep.graphics2d.VectorGraphics |
create, getSymbol, getTextAlignment, getXalignment, getYalignment |
| Methods inherited from class java.awt.Graphics |
getClipRect |
| Methods inherited from class java.lang.Object |
clone, equals, getClass, hashCode, notify, notifyAll, wait, wait, wait |
| Field Detail |
public static final String PACKAGE_NAME
public static final String version
| Constructor Detail |
public JAVAGraphics2D(File file,
Dimension size)
throws FileNotFoundException
public JAVAGraphics2D(File file,
Component component)
throws FileNotFoundException
public JAVAGraphics2D(OutputStream os,
Dimension size)
public JAVAGraphics2D(OutputStream os,
Component component)
protected JAVAGraphics2D(JAVAGraphics2D graphics)
| Method Detail |
public static Properties getDefaultProperties()
public static void setDefaultProperties(Properties newProperties)
public void setProperties(Properties newProperties)
setProperties in class VectorGraphicsprotected void initProperties(Properties defaults)
initProperties in class VectorGraphicspublic Properties getProperties()
getProperties in class VectorGraphicspublic String getProperty(String key)
getProperty in class VectorGraphicspublic Color getPropertyColor(String key)
getPropertyColor in class VectorGraphicspublic Rectangle getPropertyRectangle(String key)
getPropertyRectangle in class VectorGraphicspublic Insets getPropertyInsets(String key)
public Dimension getPropertyDimension(String key)
getPropertyDimension in class VectorGraphicspublic int getPropertyInt(String key)
getPropertyInt in class VectorGraphicspublic double getPropertyDouble(String key)
getPropertyDouble in class VectorGraphicspublic boolean isProperty(String key)
isProperty in class VectorGraphics
public void clearRect(int x,
int y,
int width,
int height)
clearRect in class VectorGraphics
public void clipRect(int x,
int y,
int width,
int height)
clipRect in class VectorGraphics
public void copyArea(int x,
int y,
int width,
int height,
int dx,
int dy)
copyArea in class VectorGraphicspublic Graphics create()
create in class VectorGraphics
public Graphics create(int x,
int y,
int width,
int height)
create in class VectorGraphics
public Graphics create(double x,
double y,
double width,
double height)
create in class VectorGraphicspublic void dispose()
dispose in class VectorGraphics
public void draw3DRect(int x,
int y,
int width,
int height,
boolean raised)
public void fill3DRect(int x,
int y,
int width,
int height,
boolean raised)
public void drawArc(int x,
int y,
int width,
int height,
int startAngle,
int arcAngle)
drawArc in class VectorGraphics
public void fillArc(int x,
int y,
int width,
int height,
int startAngle,
int arcAngle)
fillArc in class VectorGraphics
public void drawBytes(byte[] data,
int offset,
int length,
int x,
int y)
public void drawChars(char[] data,
int offset,
int length,
int x,
int y)
public boolean drawImage(Image image,
int x,
int y,
ImageObserver observer)
drawImage in class VectorGraphics
public boolean drawImage(Image image,
int x,
int y,
int width,
int height,
ImageObserver observer)
drawImage in class VectorGraphics
public boolean drawImage(Image image,
int x,
int y,
Color bgColor,
ImageObserver observer)
drawImage in class VectorGraphics
public boolean drawImage(Image image,
int x,
int y,
int width,
int height,
Color bgColor,
ImageObserver observer)
drawImage in class VectorGraphics
public boolean drawImage(Image image,
int dx1,
int dy1,
int dx2,
int dy2,
int sx1,
int sy1,
int sx2,
int sy2,
ImageObserver observer)
drawImage in class VectorGraphics
public boolean drawImage(Image image,
int dx1,
int dy1,
int dx2,
int dy2,
int sx1,
int sy1,
int sx2,
int sy2,
Color bgColor,
ImageObserver observer)
drawImage in class VectorGraphics
public void drawLine(int x1,
int y1,
int x2,
int y2)
drawLine in class VectorGraphics
public void drawOval(int x,
int y,
int width,
int height)
drawOval in class VectorGraphics
public void fillOval(int x,
int y,
int width,
int height)
fillOval in class VectorGraphics
public void drawPolygon(int[] xPoints,
int[] yPoints,
int nPoints)
drawPolygon in class VectorGraphics
public void fillPolygon(int[] xPoints,
int[] yPoints,
int nPoints)
fillPolygon in class VectorGraphicspublic void drawPolygon(Polygon p)
public void fillPolygon(Polygon p)
public void drawPolyline(int[] xPoints,
int[] yPoints,
int nPoints)
drawPolyline in class VectorGraphics
public void drawRect(int x,
int y,
int width,
int height)
drawRect in class VectorGraphics
public void fillRect(int x,
int y,
int width,
int height)
fillRect in class VectorGraphics
public void drawRoundRect(int x,
int y,
int width,
int height,
int arcWidth,
int arcHeight)
drawRoundRect in class VectorGraphics
public void fillRoundRect(int x,
int y,
int width,
int height,
int arcWidth,
int arcHeight)
fillRoundRect in class VectorGraphics
public void drawString(AttributedCharacterIterator iterator,
int x,
int y)
drawString in class VectorGraphics
public void drawString(String str,
int x,
int y)
drawString in class VectorGraphicspublic void finalize()
public Shape getClip()
getClip in class VectorGraphicspublic Rectangle getClipBounds()
getClipBounds in class VectorGraphicspublic Rectangle getClipBounds(Rectangle r)
getClipBounds in class VectorGraphicspublic Color getColor()
getColor in class VectorGraphicspublic Font getFont()
getFont in class VectorGraphicspublic FontMetrics getFontMetrics()
public FontMetrics getFontMetrics(Font font)
getFontMetrics in class VectorGraphics
public boolean hitClip(int x,
int y,
int width,
int height)
public void setClip(int x,
int y,
int width,
int height)
setClip in class VectorGraphicspublic void setClip(Shape clip)
setClip in class VectorGraphicspublic void setColor(Color c)
setColor in class VectorGraphicspublic void setFont(Font font)
setFont in class VectorGraphicspublic void setPaintMode()
setPaintMode in class VectorGraphicspublic void setXORMode(Color c1)
setXORMode in class VectorGraphicspublic String toString()
toString in class VectorGraphics
public void translate(int x,
int y)
translate in class VectorGraphicspublic void addRenderingHints(Map hints)
addRenderingHints in class VectorGraphicspublic void clip(Shape s)
clip in class VectorGraphicspublic void draw(Shape s)
draw in class VectorGraphics
public void drawGlyphVector(GlyphVector g,
float x,
float y)
drawGlyphVector in class VectorGraphics
public void drawImage(BufferedImage img,
BufferedImageOp op,
int x,
int y)
drawImage in class VectorGraphics
public boolean drawImage(Image img,
AffineTransform xform,
ImageObserver obs)
drawImage in class VectorGraphics
public void drawRenderableImage(RenderableImage img,
AffineTransform xform)
drawRenderableImage in class VectorGraphics
public void drawRenderedImage(RenderedImage img,
AffineTransform xform)
drawRenderedImage in class VectorGraphics
public void drawString(AttributedCharacterIterator iterator,
float x,
float y)
drawString in class VectorGraphics
public void drawString(String str,
float x,
float y)
drawString in class VectorGraphicspublic void fill(Shape s)
fill in class VectorGraphicspublic Color getBackground()
getBackground in class VectorGraphicspublic Composite getComposite()
getComposite in class VectorGraphicspublic GraphicsConfiguration getDeviceConfiguration()
getDeviceConfiguration in class VectorGraphicspublic FontRenderContext getFontRenderContext()
getFontRenderContext in class VectorGraphicspublic Paint getPaint()
getPaint in class VectorGraphicspublic Object getRenderingHint(RenderingHints.Key key)
getRenderingHint in class VectorGraphicspublic RenderingHints getRenderingHints()
getRenderingHints in class VectorGraphicspublic Stroke getStroke()
getStroke in class VectorGraphicspublic AffineTransform getTransform()
getTransform in class VectorGraphics
public boolean hit(Rectangle rect,
Shape s,
boolean onStroke)
hit in class VectorGraphicspublic void rotate(double theta)
rotate in class VectorGraphics
public void rotate(double theta,
double x,
double y)
rotate in class VectorGraphics
public void scale(double sx,
double sy)
scale in class VectorGraphicspublic void setBackground(Color c)
setBackground in class VectorGraphicspublic void setComposite(Composite c)
setComposite in class VectorGraphicspublic void setPaint(Paint p)
setPaint in class VectorGraphics
public void setRenderingHint(RenderingHints.Key hintKey,
Object hintValue)
setRenderingHint in class VectorGraphicspublic void setRenderingHints(Map hints)
setRenderingHints in class VectorGraphicspublic void setStroke(Stroke s)
setStroke in class VectorGraphicspublic void setTransform(AffineTransform xform)
setTransform in class VectorGraphics
public void shear(double shx,
double shy)
shear in class VectorGraphicspublic void transform(AffineTransform xform)
transform in class VectorGraphics
public void translate(double tx,
double ty)
translate in class VectorGraphics
public void clearRect(double x,
double y,
double width,
double height)
clearRect in class VectorGraphics
public void clipRect(double x,
double y,
double width,
double height)
clipRect in class VectorGraphics
public void drawArc(double x,
double y,
double width,
double height,
double startAngle,
double arcAngle)
VectorGraphics
drawArc in class VectorGraphics
public void drawLine(double x1,
double y1,
double x2,
double y2)
VectorGraphics
drawLine in class VectorGraphics
public void drawOval(double x,
double y,
double width,
double height)
VectorGraphics
drawOval in class VectorGraphics
public void drawPolygon(double[] xPoints,
double[] yPoints,
int nPoints)
VectorGraphics
drawPolygon in class VectorGraphics
public void drawPolyline(double[] xPoints,
double[] yPoints,
int nPoints)
VectorGraphics
drawPolyline in class VectorGraphics
public void drawRect(double x,
double y,
double width,
double height)
VectorGraphics
drawRect in class VectorGraphics
public void drawRoundRect(double x,
double y,
double width,
double height,
double arcWidth,
double arcHeight)
VectorGraphics
drawRoundRect in class VectorGraphics
public void drawSymbol(int x,
int y,
int size,
int symbol)
drawSymbol in class VectorGraphics
public void fillAndDrawSymbol(int x,
int y,
int size,
int symbol,
Color fillColor)
fillAndDrawSymbol in class VectorGraphics
public void drawSymbol(double x,
double y,
double size,
int symbol)
drawSymbol in class VectorGraphics
public void fillSymbol(int x,
int y,
int size,
int symbol)
fillSymbol in class VectorGraphics
public void fillSymbol(double x,
double y,
double size,
int symbol)
fillSymbol in class VectorGraphics
public void fillAndDrawSymbol(double x,
double y,
double size,
int symbol,
Color fillColor)
fillAndDrawSymbol in class VectorGraphics
public void drawString(String str,
double x,
double y)
VectorGraphics
drawString in class VectorGraphics
public void drawString(TagString str,
double x,
double y)
drawString in class VectorGraphics
public void drawString(String str,
double x,
double y,
int horizontal,
int vertical)
drawString in class VectorGraphics
public void drawString(TagString str,
double x,
double y,
int horizontal,
int vertical)
drawString in class VectorGraphics
public void drawString(String str,
double x,
double y,
int horizontal,
int vertical,
boolean framed,
Color frameColor,
double frameWidth,
boolean banner,
Color bannerColor)
VectorGraphics
drawString in class VectorGraphicsstr - text to be drawnx - coordinate to draw stringy - coordinate to draw stringhorizontal - alignment of the textvertical - alignment of the textframed - true if text is surrounded by a frameframeColor - color of the frameframeWidth - witdh of the framebanner - true if the frame is filled by a bannerbannerColor - color of the banner
public void drawString(TagString str,
double x,
double y,
int horizontal,
int vertical,
boolean framed,
Color frameColor,
double frameWidth,
boolean banner,
Color bannerColor)
VectorGraphics
drawString in class VectorGraphicsstr - Tagged text to be drawnx - coordinate to draw stringy - coordinate to draw stringhorizontal - alignment of the textvertical - alignment of the textframed - true if text is surrounded by a frameframeColor - color of the frameframeWidth - witdh of the framebanner - true if the frame is filled by a bannerbannerColor - color of the banner
public void fillAndDraw(Shape s,
Color fillColor)
fillAndDraw in class VectorGraphics
public void fillArc(double x,
double y,
double width,
double height,
double startAngle,
double arcAngle)
VectorGraphics
fillArc in class VectorGraphics
public void fillOval(double x,
double y,
double width,
double height)
VectorGraphics
fillOval in class VectorGraphics
public void fillPolygon(double[] xPoints,
double[] yPoints,
int nPoints)
VectorGraphics
fillPolygon in class VectorGraphics
public void fillRect(double x,
double y,
double width,
double height)
VectorGraphics
fillRect in class VectorGraphics
public void fillRoundRect(double x,
double y,
double width,
double height,
double arcWidth,
double arcHeight)
VectorGraphics
fillRoundRect in class VectorGraphicspublic int getColorMode()
getColorMode in class VectorGraphicspublic String getCreator()
getCreator in class VectorGraphicspublic boolean isDeviceIndependent()
isDeviceIndependent in class VectorGraphicspublic void printComment(String comment)
printComment in class VectorGraphics
public void setClip(double x,
double y,
double width,
double height)
setClip in class VectorGraphicspublic void setColorMode(int colorMode)
setColorMode in class VectorGraphicspublic void setCreator(String creator)
setCreator in class VectorGraphicspublic void setDeviceIndependent(boolean isDeviceIndependent)
setDeviceIndependent in class VectorGraphicspublic void setLineWidth(int width)
setLineWidth in class VectorGraphicspublic void setLineWidth(double width)
setLineWidth in class VectorGraphicspublic void startExport()
startExport in class VectorGraphicspublic void endExport()
endExport in class VectorGraphicspublic void lineNumberReached(LineNumberWriter.LineNumberEvent event)
lineNumberReached in interface LineNumberWriter.LineNumberListener
|
FreeHEP API Version current |
|||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||