aspose file tools
The moose likes Swing / AWT / SWT and the fly likes JPanel and text Big Moose Saloon
  Search | Java FAQ | Recent Topics
Register / Login
JavaRanch » Java Forums » Java » Swing / AWT / SWT
Reply Bookmark "JPanel and text" Watch "JPanel and text" New topic
Author

JPanel and text

Nick Petas
Ranch Hand

Joined: Jan 31, 2007
Posts: 38
I have a MyClass that extends Jpanel and it only contains one private instance variable(text) of String type.

there is a constructor :

public MyClass()
{
text = "";
}

and a paintComponent method

// paintComponent to be done in (a)
public void paintComponent(Graphics g)
{
super.paintComponent(g);

g.drawString(text, 10, 10);

}

that draws the string in th JPanel.

I want to create a void setText(String s) method that will accept a string and then it will update the text instance variable but it will also draw the text in the JPanel.

Any ideas?

Thank you very much!
Gregg Bolinger
Ranch Hand

Joined: Jul 11, 2001
Posts: 15229

 
I agree. Here's the link: http://ej-technologies/jprofiler - if it wasn't for jprofiler, we would need to run our stuff on 16 servers instead of 3.
 
subject: JPanel and text
 
Similar Threads
Taking values from a text file inside paintcomponent
a question about JPanel
Is this a Java Program?
JPanel + text
repaint() becomes slower as program runs