Abdus Sami Khan
Abdus Sami Khan

Reputation: 277

set title to JFrame

I am new to Java. My problem is that I have a class names MyClassExp. I have extended it from JFrame. Inside the class, I initiate an object of another class named TabbedFrame. TabbedFrame also extends a class DemoFrame . In DemoFrame, I have the title of the page set using keyword 'super' like:

super("Some Title");

Now when I run my MyClassExp, even after creating a JFrame as:

new JFrame("New Title"); 

I'm still getting the same title i.e Some Title. Is there any way to solve this problem? I've tried a lot to solve it but failed :'(

Upvotes: 4

Views: 23430

Answers (3)

Juvanis
Juvanis

Reputation: 25950

Use the API method public void setTitle(String title).

Upvotes: 5

EassyE
EassyE

Reputation: 1

Just use setTitle("yourTitleName");

for example:

setTitle("Currency Converter");
textField.addKeyListener(this);
combo.addItemListener(this);
label.addMouseListener(this);
setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);

Upvotes: -1

Kumar Vivek Mitra
Kumar Vivek Mitra

Reputation: 33534

- Inside the MyClassExp class's constructor use this.setTitle(String title) method.

Upvotes: 1

Related Questions