what is default layout of JFrame class?
Answers were Sorted based on User's Feedback
Answer / la_di
The default layout manager of a JFrame (and a Frame to) is
BorderedLayout. Check this code:
System.out.println(new JFrame().getLayout());
| Is This Answer Correct ? | 47 Yes | 4 No |
Answer / jsrc1990
And Look this System.out.println(new JFrame().getContentPane
().getLayout());
| Is This Answer Correct ? | 5 Yes | 5 No |
What is a method in java?
What is the is a and has a relation ship in oops concept in java?
Can you tell me range of byte?
Why Do I Get A "permission Denied" Error After Downloading The .jnlp Java Launcher For The Vkvm?
How do you implement tree mirroring in java?
What happens if an exception is throws from an object's destructor?
What is the difference between interpreter and compiling ?
Explain yield() method in thread class ?
What are assembly attributes?
How many times finalize method will be invoked? Who invokes finalize() method in java?
What is access modifiers?
What are synchronized methods and synchronized statements in java programming?