how to draw editable String inside Graphics
I have a graphic Circle with some text in it whish is static.Now i want to change the text when i am running the application.I should be able to write into the circle.How do i do it?
[203 byte] By [
camel10] at [2007-9-26 4:44:31]

Try
g2.drawString(text,x,y);
If you want to plot it to a path, you can generate each letter as a shape and then manipulate/plot like any graphical object.
O'Reillys Java 2D graphics (chapters 6/7) has lots on this and you can download the examples from www.ora.com
MArk